Finding Out The Internet Download and Upload Speed From the Command Line [Linux]

Spread the love

We have shown you before how you can can find out the download speed of your Internet connection from the terminal, but that only gives you the download speed. If you want to know about the upload speed as well, speedtest-cli is yet another tool you can use.

Speedtest-cli is a python script for testing your internet bandwidth using speedtest.net. While you can open your browser and go to the Speedtest.net site to test your Internet connection, speedtest-cli is much easier and quicker to use and bring back the result much faster.

To install speedtest-cli in Linux, run the following commands in the terminal:

sudo wget https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py -O /usr/bin/speedtest-cli
sudo chmod +x /usr/bin/speedtest-cli

The first command downloads the speedtest-cli script and save it in “/usr/bin” directory, while the second command set executable flag for the script.

Once installed, you just need to run the speedtest-cli command and it will run the speedtest.

Other than testing the Internet speed, you can also share your result with speedtest.net. Use the command:

speedtest-cli --share

Other options you can set with speedtest-cli include --list which will list all the speedtest.net server that you can use to test your Internet speed. The default option is the server closest to your location, but if you want to test the connection speed from a remote location, say from Singapore to USA, then you can checkout the list of speedtest.net servers and set the option:

speedtest-cli --server SERVER_ID

to select the server (where SERVER_ID is the ID of the remote server).

That’s it.

Image credit: Train Rush by BigStockPhoto

Subscribe to our newsletter!

Our latest tutorials delivered straight to your inbox

Sign up for all newsletters.
By signing up, you agree to our Privacy Policy and European users agree to the data transfer policy. We will not share your data and you can unsubscribe at any time. Subscribe


Damien Oh

Damien Oh started writing tech articles since 2007 and has over 10 years of experience in the tech industry. He is proficient in Windows, Linux, Mac, Android and iOS, and worked as a part time WordPress Developer. He is currently the owner and Editor-in-Chief of Make Tech Easier.

Comments (4)