運維係列:常用VPS測速腳本
1,LemonBench全能測試
參考腳本代碼
curl -fsL https://ilemonra.in/LemonBenchIntl | bash -s fast
curl -fsSL https://ilemonrain.com/download/shell/LemonBench.sh | bash
wget -qO- https://ilemonrain.com/download/shell/LemonBench.sh | bash
curl -fsSL https://ilemonrain.com/download/shell/LemonBench.sh | bash -s fast
curl -fsSL https://ilemonrain.com/download/shell/LemonBench.sh | bash -s full
wget -qO- https://ilemonrain.com/download/shell/LemonBench.sh | bash -s fast
wget -qO- https://ilemonrain.com/download/shell/LemonBench.sh | bash -s full
2,內存檢測腳本
#CentOS / RHEL
yum install wget -y
yum groupinstall "Development Tools" -y
wget https://raw.githubusercontent.com/FunctionClub/Memtester/master/memtester.cpp
gcc -l stdc++ memtester.cpp
./a.out
#Ubuntu / Debian
apt-get update
apt-get install wget build-essential -y
wget https://raw.githubusercontent.com/FunctionClub/Memtester/master/memtester.cpp
gcc -l stdc++ memtester.cpp
./a.out
3,UnixBench性能測試
wget --no-check-certificate https://github.com/teddysun/across/raw/master/unixbench.sh
chmod +x unixbench.sh
./unixbench.sh
4,24小時監測VPS延遲
#Debian / Ubuntu
apt-get update
apt-get install python wget screen -y
#CentOS / RHEL
yum install screen wget python -y
安裝完運行:
screen -S uping
wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/uPing/master/uping.py
python uping.py
5,ZBench(係統信息+io+網速+延遲)
wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/ZBench/master/ZBench-CN.sh && bash ZBench-CN.sh
6,三網speedtest
bash <(curl -Lso- https://git.io/superspeed)
相關說明:
1、VIP會員無限製任意下載,免積分。立即前往開通>>
2、下載積分可通過日常 簽到、綁定郵箱 以及 積分兌換 等途徑獲得!
3、本站資源大多存儲在雲盤,如出現鏈接失效請評論反饋,如有密碼,均為:www.ipipn.com。
4、所有站內資源僅供學習交流使用。未經原版權作者許可,禁止用於任何商業環境,否則後果自負。為尊重作者版權,請購買正版作品。
5、站內資源來源於網絡公開發表文件或網友分享,如侵犯您的權益,請聯係管理員處理。
6、本站提供的源碼、模板、軟件工具等其他資源,都不包含技術服務,請大家諒解!
7、源碼、模板等資源會隨著技術、壞境的升級而存在部分問題,還請慎重選擇。
PS.源碼均收集自網絡,如有侵犯閣下權益,請發信件至: admin@ipipn.com .
源站網 » 運維係列:常用VPS測速腳本