Command Line Testing Internet Bandwidth Using Python
Speedtest.net is a go to site for testing Internet speeds, which is usually accomplished through a web browser. There is a command line utility that offers the functionality without the need of a GUI or the web browser. cd /opt wget https://github.com/sivel/speedtest-cli/archive/master.zip unzip master.zip cd speedtest-cli-master/ chmod +x speedtest_cli.py ./speedtest_cli.py mv speedtest_cli.py /usr/bin/ To run the utility, type speedtest_cli.py. Here…
Read More »