看到RackNerd最近活动年付10.28美元(RackNerd黑五活动:美国便宜VPS低至$10.28/年,1TB流量@1Gbps端口,抽盲盒奖金获得价格减免福利!),忍不住搞了台配置最低的(购买入口,就足够了),用于备用梯子。以前没有好好的测试下梯子,最近由于IP被封等情况,对于新的VPS首先测试的IP通不通,其他的我都关心不多,顺手整理一些大佬的Linux VPS主机性能速度测试脚本留个档,包括Yabs.sh、Bench.sh、SuperBench.sh、ZBench.sh、LemonBench.sh、Nench.sh、UnixBench.sh等,也供大家参考。
1、Linux VPS主机综合测试脚本
Yabs.sh
脚本比较全面,可用来测试vps多项性能,包括配置信息、磁盘IO测试、网络带宽测试和Geekbench测试。
Yabs.sh脚本地址:https://github.com/masonr/yet-another-bench-script
curl -sL yabs.sh | bash
or
wget -qO- yabs.sh | bash
Yabs.sh演示截图:
数据大家自己看哈,这里测试的机器是VoLLcloud香港 CMI VPS(下同,VoLLcloud补货高配香港CMI VPS,9折限时优惠仅$206.1/年!4核2G内存10GB SSD,4T流量@500Mbps端口,三网直连,回程三网CMI,香港原生IP,解锁奈非/迪士尼),详细测试报告:https://browser.geekbench.com/v5/cpu/19183111。
Bench.sh
秋水逸冰大佬的写的Bench.sh脚本,可以使用以下命令来查看您的 Linux 系统信息,还可以测试网络带宽及硬盘读写速率。
bench.sh脚本地址:https://github.com/teddysun/across/blob/master/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
Bench.sh演示截图:
SuperBench.sh
SuperBench脚本是老鬼(Oldking)大神在基于秋水逸冰(teddysun)脚本bench.sh的基础上,加入了独立服务器通电时间检测、服务器虚拟化架构、TCP拥塞控制等功能。
SuperBench脚本地址:https://github.com/oooldking/script/blob/master/superbench.sh
- 改进了显示的模式,基本参数添加了颜色,方面区分与查找。
- I/O测试,更改了原来默认的测试的内容,采用小文件,中等文件,大文件,分别测试IO性能,然后取平均值。
- 速度测试替换成了 Superspeed 里面的测试,第一个默认节点是,Speedtest 默认,其他分别测试到中国电信,联通,移动,各三个不同地区的速度。
- 增加
GEOIP
信息,包含国家,地区,机房,AS
号,分享模式,方便分享测试结果等功能。
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/super
SuperBench.sh演示截图:
ZBench.sh
Zbench脚本基于秋水逸冰(teddysun)的Bench.sh和老鬼(Oldking)的 SuperBench 进行整合二次开发,然后加入Ping以及路由测试的功能,还能生成完整的web测评报告,分享给其他人查看测评数据。ZBench是专门为国人测试Linux服务器而开发的,因为加强了到中国的带宽和延迟测试。
Zbench脚本地址:https://github.com/FunctionClub/ZBench
wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/ZBench/master/ZBench-CN.sh && bash ZBench-CN.sh
wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/ZBench/master/ZBench.sh && bash ZBench.sh
Zbench.sh演示部分截图:
LemonBench.sh
LemonBench工具(别名LBench、柠檬Bench),是一款针对Linux服务器设计的服务器性能测试工具。通过综合测试,可以快速评估服务器的综合性能,为使用者提供服务器硬件配置信息。
LemonBench脚本地址:https://ilemonrain.com/download/shell/LemonBench.sh
- 服务器基础信息(CPU信息/内存信息/Swap信息/磁盘空间信息等)
- Speedtest网速测试 (本地到最近源及国内各地域不同线路的网速)
- 磁盘测试(4K块/1M块 直接写入测试)
- 路由追踪测试(追踪到国内和海外不同线路的路由信息)
- Spoofer测试(获取详细网络信息,快速判断服务器接入线路)
curl -fsL https://ilemonra.in/LemonBenchIntl | bash -s full
或精简版
curl -fsL https://ilemonra.in/LemonBenchIntl | bash -s fast
LemonBench.sh演示截图:
Nench.sh
项目地址:https://github.com/n-st/nench
(curl -s wget.racing/nench.sh | bash; curl -s wget.racing/nench.sh | bash) 2>&1 | tee nench.log
(wget -qO- wget.racing/nench.sh | bash; wget -qO- wget.racing/nench.sh | bash) 2>&1 | tee nench.log
Nench.sh演示截图:
2、内存测试脚本
内存检测脚本
FunctionClub大佬作品,本程序检测的可分配内存指的是用户使用时最大能占用的内存量。检测VPS真实可分配内存,适用于检测VPS超售情况。
#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
检测截图:可见官方说是2G内存,实测不止,不超售
3、类Unix系统测试脚本
UnixBench.sh
秋水逸冰大佬的作品,UnixBench是一个类unix系(Unix,BSD,Linux)统下的性能测试工具,一个开源工具,被广泛用与测试Linux系统主机的性能。Unixbench的主要测试项目有:系统调用、读写、进程、图形化测试、2D、3D、管道、运算、C库等系统基准性能提供测试数据。
- 自动安装UnixBench和测试脚本
- 系统调用、读写、进程、图形化测试、2D、3D、管道、运算、C库等系统基准性能
wget --no-check-certificate https://github.com/teddysun/across/raw/master/unixbench.sh chmod +x unixbench.sh ./unixbench.sh
UnixBench.sh演示截图:
4、测速工具/带宽测试
测速工具
#国内测速
bash <(curl -Lso- https://git.io/superbench)
Superbench国内测试演示部分截图:
#国际测速
wget -qO- bench.sh | bash
Superbench国际测试演示部分截图:
SuperSpeed.sh修复版
bash <(curl -Lso- https://git.io/superspeed_uxh)
bash <(curl -Lso- https://raw.githubusercontent.com/uxh/superspeed/master/superspeed.sh)
SuperSpeed.sh修复版测速部分截图:
Speedtest亚洲速度测试
curl -LsO bench.monster/speedtest.sh; bash speedtest.sh -Asia
Speedtest亚洲速度测试截图:
5、VPS路由追踪
VPS一键测试回程路由脚本
wget -qO- git.io/besttrace | bash
curl https://raw.githubusercontent.com/zhanghanyun/backtrace/main/install.sh -sSf | sh
三网回程路由演示截图:
Besttrace4Linux回程路由测试
IPIP.net开发的一款图形化的路由追踪软件,可以直观的显示路由追踪的各级节点。
- Linux(X86/ARM)/Mac/BSD 系统环境下发起 traceroute 请求
- 附带链路可视化
- 兼容性强
- 支持 JSON 格式
#下载
wget http://cdn.ipip.net/17mon/besttrace4linux.zip
#解压
unzip besttrace4linux.zip
#授权
chmod +x besttrace
#使用
./besttrace -q1 这里是目标IP
如果是64位系统则直接besttrace替换besttrace32
mtr_trace
检测VPS回程国内三网路由,支持的线路为:电信CN2 GT,电信CN2 GIA,联通169,电信163,联通9929,联通4837,移动CMI。
curl https://raw.githubusercontent.com/zhucaidan/mtr_trace/main/mtr_trace.sh|bash
jcnf.sh
项目地址 https://github.com/Netflixxp
脚本的安装目录位于 /home/testrace 测试完成并退出脚本后,会生成测试的记录文件于 /home/testrace/testrace.log 运行脚本后将出现三个选项,分别为:
- 选择一个节点进行测试
- 四网路由快速测试
- 手动输入ip进行测试
# 初次使用
wget -O jcnf.sh https://raw.githubusercontent.com/Netflixxp/jcnfbesttrace/main/jcnf.sh && chmod +x jcnf.sh && clear &&./jcnf.sh
# 再次使用
bash jcnf.sh
6、流媒体解锁测试
RegionRestrictionChec
脚本地址 https://github.com/lmc999/RegionRestrictionCheck
使用脚本前请确认curl已安装
bash <(curl -L -s check.unlock.media)
只检测IPv4结果:
bash <(curl -L -s check.unlock.media) -M 4
只检测IPv6结果:
bash <(curl -L -s check.unlock.media) -M 6
指定检测的网卡名称:
bash <(curl -L -s check.unlock.media) -I eth0
选择脚本语言为英文:
bash <(curl -L -s check.unlock.media) -E
或者直接运行以下Docker命令 (兼容ARM架构)
docker run --rm -ti --net=host lmc999/regioncheck && docker rmi lmc999/regioncheck
流媒体解锁情况检测脚本
bash <(curl -L -s https://raw.githubusercontent.com/lmc999/RegionRestrictionCheck/main/check.sh)
TikTok检测
curl -fsL -o ./t.sh.x https://github.com/lmc999/TikTokCheck/raw/main/t.sh.x && chmod +x ./t.sh.x && ./t.sh.x && rm ./t.sh.x
7、Ping值测试
uPing
FunctionClub大佬作品,测试阶段,请勿用于生产环境!
- 一个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
PrettyPing.sh
Denilsonsa大佬写的Ping脚本
- 基本用途相当于 ping 命令
- 附带了更美观精细地彩色图示
wget https://raw.githubusercontent.com/denilsonsa/prettyping/master/prettyping
mv prettyping /usr/local/bin
chmod +x /usr/local/bin/prettyping
prettyping 目标IP
mPing.sh
Mr.zou大佬写的脚本
- 方便测试回程Ping值
- 目前支持众多区域和各大运营商
wget https://raw.githubusercontent.com/helloxz/mping/master/mping.sh
bash mping.sh
Ping.pe
可以看到各运营商的丢包数据
在线测试工具
- 站长之家Ping:http://ping.chinaz.com/
- 17ce网站测速:https://www.17ce.com/
- WebKaka网站测速:http://www.webkaka.com/
- IPIP.NET:https://www.ipip.net/,包含路由追踪、Ping、端口检测、ASN查询等工具。
购买新的VPS都要进行一番的测试,测试机器的配置和性能,网络速度,硬盘性能等。这里收集一些测试脚本,脚本均来自于网络,代码内有作者信息,感谢网络大神们提供这么优秀的工具,在此感谢各位脚本大佬的辛苦付出!