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)

7,Bench.sh

秋水逸冰大佬的写的Bench.sh脚本

特点

  • 显示当前测试的各种系统信息;
  • 取自世界多处的知名数据中心的测试点,下载测试比较全面;
  • 支持 IPv6 下载测速;
  • IO 测试三次,并显示平均值。

wget -qO- bench.sh | bash
#或者
curl -Lso- bench.sh | bash
#或者
wget -qO- 86.re/bench.sh | bash
#或者
curl -so- 86.re/bench.sh | bash

8,SuperBench.sh

老鬼大佬的SuperBench测试脚本

特点

  • 改进了显示的模式,基本参数添加了颜色,方面区分与查找。
  • I/O测试,更改了原来默认的测试的内容,采用小文件,中等文件,大文件,分别测试IO性能,然后取平均值。
  • 速度测试替换成了 Superspeed 里面的测试,第一个默认节点是,Speedtest 默认,其他分别测试到中国电信,联通,移动,各三个不同地区的速度。

wget -qO- --no-check-certificate https://raw.githubusercontent.com/oooldking/script/master/superbench.sh | bash
#或者
curl -Lso- -no-check-certificate https://raw.githubusercontent.com/oooldking/script/master/superb

9,其他

https://zhuanlan.zhihu.com/p/117547388