How can I get the speed of my internet connection from the terminal? Is there any script or commandline application(s) available?
I'm using CentOS 6.5 .
How can I get the speed of my internet connection from the terminal? Is there any script or commandline application(s) available?
I'm using CentOS 6.5 .
you can do it, open your terminal and type as
wget -O speedtest-cli https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py
chmod +x speedtest-cli
./speedtest-cli
For example:
[raja@localhost ~]$ ./speedtest-cli
Retrieving speedtest.net configuration...
Retrieving speedtest.net server list...
Testing from BSNL (XXX.XXX.XXX.XXX)...
Selecting best server based on ping...
Hosted by BEAM TELECOM (Hyderabad) [19.00 km]: 39.975 ms
Testing download speed........................................
Download: 1.16 Mbit/s
Testing upload speed..................................................
Upload: 0.38 Mbit/s
[raja@localhost ~]$
Thanks to LinOxide.