Linux下使用Speedtest測試網速

roc_guo發表於2022-11-07

Linux下使用Speedtest測試網速Linux下使用Speedtest測試網速

Speedtest介紹

由於公司幾個專案使用者訪問的時候響應較慢,專案本身沒問題,服務及呼叫的介面返回資訊都比較正常,猜想是網路方面造成的瓶頸,導致使用者請求的時候網路響應堵塞,拉長了響應時間。

Speedtest.net是比較廣泛的用來測試寬頻速度的網站,Speedtest.net的工作原理並不複雜:它在你的瀏覽器中載入JavaScript程式碼並自動檢測離你最近的Speedtest.net伺服器,然後向伺服器傳送HTTP GET and POST請求來測試上行/下行網速。

但在沒有圖形化桌面時(例如,當你透過 行遠端登陸伺服器或使用沒有圖形介面的作業系統),基於flash、介面友好的Speedtest.net將無法工作。幸運的是,Speedtest.net提供了一個 行版本——speedtest-cli。下面我將向你演示如何在Linux的命令列中使用speedtest-cli來測試寬頻連線速度。

安裝speedtest-cli

Github連結:
Speendtest.net官網:
測試本機所在網路出口的頻寬,訪問Speendtest.net,點選首頁的Begin開始測試,等待幾秒,檢視測試結果:

Linux下使用Speedtest測試網速Linux下使用Speedtest測試網速

pip安裝

speedtest是用python寫的,沒使用過pip的需要先安裝pip,

pip安裝:
#開啟epel源

yum install python-pip –y
安裝speedtest-cli
pip install speedtest-cli

安裝完成測試

which speedtest-cli | bash –

Linux下使用Speedtest測試網速Linux下使用Speedtest測試網速

github安裝
pip install git+.git

或者

git clone .git
python speedtest-cli/setup.py install
安裝
wget -O speedtest-cli 
chmod +x speedtest-cli
./speedtest-cli
speedtest-cli使用
speedtest-cli –h
/usr/bin/speedtest-cli –share
/usr/bin/speedtest-cli –list

Linux下使用Speedtest測試網速Linux下使用Speedtest測試網速 Linux下使用Speedtest測試網速Linux下使用Speedtest測試網速


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69901823/viewspace-2922098/,如需轉載,請註明出處,否則將追究法律責任。

相關文章