最近重新建站,趁着黑五入手了几台VPS,就跑了跑测试脚本,所以写了这篇文章收集一些常用脚本。

正文开始😊

综合测试类

SuperBench

SuperBench 是一款综合的测试服务器脚本,测试项目包括:硬件基本信息、流媒体解锁、硬盘读写、Geekbench跑分、国内外测速、网络路由追踪。

//方式一
bash <(wget -qO- https://download.omege.cn/linux/superbench.sh)或
bash <(wget -qO- https://raw.githubusercontent.com/fan-x-ing/linuxtest/main/superbench.sh)
//方式二
wget -qO- https://download.omege.cn/linux/superbench.sh | sudo bash或
wget -qO- https://github.com/fan-x-ing/linuxtest/blob/main/superbench.sh | sudo bash

bench.sh

bench.sh 是一款由秋水逸冰大佬开发的测试脚本,测试项目有:硬件基本信息、磁盘读写、带宽测速。

//方式一
wget -qO- download.omege.cn/linux/bench.sh | bash 或
wget -qO- bench.sh | bash
//方式二
curl -so- download.omege.cn/linux/bench.sh | bash 或
curl -Lso- bench.sh | bash

Zench

Zench 在融合bench.sh 和 SuperBench 的同时,又加入了 Ping 和 路由追踪,同时还会生成测试报告,很方便分享。

//中文版
wget -N --no-check-certificate https://download.omege.cn/linux/ZBench-CN.sh && bash ZBench-CN.sh
//英文版
wget -N --no-check-certificate https://download.omege.cn/linux/ZBench.sh && bash ZBench.sh

LemonBench.sh

LemonBench 是一款针对Linux服务器设计的服务器性能测试脚本,测试项目有:硬件基本信息、Speedtest 网速测试、硬盘测试、路由追踪测试、Spoofer 测试。

Spoofer 测试可以获取详细网络信息,快速判断服务器接入线路。

//完整版
curl -fsL https://download.omege.cn/linux/LemonBenchIntl.sh | bash -s full
//精简版
curl -fsL https://download.omege.cn/linux/LemonBenchIntl.sh | bash -s fast

纯测速类

SuperSpeed.sh

SuperSpeed.sh 是一款纯测速脚本,支持:全面测速、就近节点测速、三网分别测速。

wget https://download.omege.cn/linux/superspeed.sh && chmod +x superspeed.sh && ./superspeed.sh 或
wget https://raw.githubusercontent.com/fan-x-ing/linuxtest/main/superspeed.sh && chmod +x superspeed.sh && ./superspeed.sh

网络测试

回程测试

这是一款测试服务器网络回程的脚本,可以判断出服务器走哪条线路。

//方式一
wget https://download.omege.cn/linux/testrace.sh
bash testrace.sh
//方式二
wget https://raw.githubusercontent.com/fan-x-ing/linuxtest/main/testrace.sh
bash testrace.sh

去程测试

点我跳转

流媒体解锁

bash <(curl -L -s https://download.omege.cn/linux/check.sh)

正文结束🥳🎉

本文到这里就结束了,这篇文章算是一个文档类型,方便日后自己测试机器了😂。