Difference between revisions of "Internet speed test using Terminal"

From Ever changing code
Jump to navigation Jump to search
(Created page with "= Speedtest.net = pip install speedtest-cli or: easy_install speedtest-cli = Wget = wget --output-document=/dev/null http://speedtest.wdc01.softlayer.com/downloads/test...")
 
Line 1: Line 1:
= Speedtest.net =
= Speedtest.net =
   
  sudo apt-get install python-pip
  pip install speedtest-cli
  pip install speedtest-cli
or:
or:
sudo apt-get install python-setuptools
  easy_install speedtest-cli
  easy_install speedtest-cli
This 2nd solution worked on AWS Ubuntu 13.04 Server and it needed ~3Mb (<tt>python-setuptools</tt>) to download versus ~80Mb for <tt>python-pip</tt>


= Wget =
= Wget =

Revision as of 01:19, 4 February 2014

Speedtest.net

sudo apt-get install python-pip
pip install speedtest-cli

or:

sudo apt-get install python-setuptools
easy_install speedtest-cli

This 2nd solution worked on AWS Ubuntu 13.04 Server and it needed ~3Mb (python-setuptools) to download versus ~80Mb for python-pip

Wget

wget --output-document=/dev/null http://speedtest.wdc01.softlayer.com/downloads/test500.zip

References