verificar velocidade de internet do terminal? [duplicado]

1

Como posso obter a velocidade da minha conexão com a Internet a partir do terminal? Existe algum script ou aplicativo de linha de comando disponível?

Estou usando o CentOS 6.5.

    
por rɑːdʒɑ 02.01.2014 / 23:04

1 resposta

4

você pode fazer isso, abrir o seu terminal e digitar como

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

Por exemplo:

[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 ~]$

Obrigado pelo LinOxide .

    
por 02.01.2014 / 23:07