主机测评全套工具、脚本、软件汇总(VPS / 独立服务器测评专用)

分为Linux 一键综合测评脚本、专项测试脚本(流媒体 / 路由 / 测速)、底层专业命令工具、Windows 服务器测评软件、辅助测评工具五大类,全部为主机测评站长日常实测常用,附带一键执行命令。
一、Linux 全能综合一键测评脚本(测评首发必跑)

Bench.sh(秋水逸冰|轻量快速基础测评)

适用:快速验机、基础配置、简单 IO、全球测速,1 分钟跑完

wget -qO- bench.sh | bash
# 或curl版本
curl -Lso- bench.sh | bash

功能:CPU / 内存 / 磁盘大小、三次 dd 硬盘 IO、全球多节点下载测速、IPv6 测速、系统内核信息

SuperBench.sh(OldKing 增强版|国内测评主流)

适用:国内站长首选,集成三网测速、流媒体、回程、Geekbench

wget -qO- git.io/superbench.sh | bash

功能:三网国内上下行、Netflix/Disney+/YouTube 解锁、北上广回程路由、GB5 跑分、硬盘 IO、负载、系统信息

YABS.sh(专业基准|硬盘 / CPU 深度跑分)

适用:深度性能对比,专业测评数据

curl -sL yabs.sh | bash

内置专业工具:fio 精准 4K 随机 IO、iperf3 点对点带宽、Geekbench5/6、多节点 speedtest,输出标准化跑分适合写测评数据

LemonBench 极柠檬国际版

适用:海外机器、TLS 检测、流媒体深度检测

curl -fsL https://ilemonra.in/LemonBenchIntl | bash -s fast

新增:TLS1.3 检测、IP 地理位置、路由跳数统计、流媒体细分检测

融合怪 ECS(spiritLHLS|全能整合天花板)

适用:一站式全套测评,融合所有单项工具,Go 二进制无依赖

curl https://github.com/spiritLHLS/ecs/raw/main/ecs.sh -o ecs.sh && chmod +x ecs.sh && ./ecs.sh

功能:综合性能、流媒体、三网回程、IP 质量、硬盘通电时间、BBR 检测、IPV4/6 分离测试,可单独执行某一项测试

BlueSkyXN SKY-BOX 综合工具箱
wget -O box.sh https://raw.githubusercontent.com/BlueSkyXN/SKY-BOX/main/box.sh && chmod +x box.sh && clear && ./box.sh

集成:测速、路由、流媒体、一键 BBR、DD 防御检测、系统信息、带宽封顶检测

Nench(国外极简轻量脚本)
(curl -s wget.racing/nench.sh | bash) 2>&1 | tee nench.log

适合海外极简测评,输出干净,适合导出日志

二、专项单项测试脚本(测评细分指标专用)

(一)流媒体解锁检测(Netflix/Disney+/Hulu/B 站等)

lmc999 RegionRestrictionCheck(最通用)
bash <(curl -L -s https://raw.githubusercontent.com/lmc999/RegionRestrictionCheck/main/check.sh)
# 仅测IPv4
bash <(curl -L -s https://raw.githubusercontent.com/lmc999/RegionRestrictionCheck/main/check.sh) -M 4

支持:网飞、迪士尼、HBO、Prime、BBC、TikTok、B 站、爱奇艺国际版、Apple TV 等

check.unlock.media 轻量化流媒体
bash <(curl -L -s check.unlock.media)

速度更快,适合快速筛查 IP 解锁状态

(二)三网回程路由追踪(国内联通 / 电信 / 移动线路测评核心)

NextTrace(可视化回程,推荐)
curl nxtrace.org/nt |bash

自动北上广三网回程,打印运营商、AS 线路、路由图,支持 IPv6

BestTrace
wget -qO- git.io/besttrace | bash

老牌回程工具,日志清晰,适合截图写测评

BackTrace
curl https://raw.githubusercontent.com/zhanghanyun/backtrace/main/install.sh -sSf | sh

纯 shell 轻量,无额外依赖

AutoTrace
wget -N --no-check-certificate https://raw.githubusercontent.com/Chennhaoo/Shell_Bash/master/AutoTrace.sh && chmod +x AutoTrace.sh && bash AutoTrace.sh

(三)国内三网上下行测速脚本

SuperSpeed.sh 修复版三网测速
bash <(curl -Lso- https://raw.githubusercontent.com/ernisn/superspeed/master/superspeed.sh)

单独跑国内电信 / 联通 / 移动上下行、延迟、丢包,不跑多余性能项

(四)硬盘独服专用检测(看是否二手机房机)

查看硬盘通电时长、型号、写入量(独服测评必备)
wget -q https://github.com/Aniverse/A/raw/i/a && bash a

(五)BBR 拥塞算法检测 / 一键 BBR 加速脚本

wget https://github.com/teddysun/across/raw/master/bbr.sh && chmod +x bbr.sh && ./bbr.sh

检测当前 BBR/CAKE/ 锐速,一键开启原版 BBR

三、底层专业命令行工具(深度测评、精准数据)

CPU 性能测试
sysbench(多线程压力跑分)
yum install sysbench -y # CentOS
apt install sysbench -y # Debian/Ubuntu
sysbench cpu --cpu-max-prime=20000 run
UnixBench(系统综合浮点 / 进程跑分,耗时 30min+)
wget --no-check-certificate https://github.com/teddysun/across/raw/master/unixbench.sh
sh unixbench.sh

Geekbench 5/6:YABS 自动调用,跨平台对比 CPU 单核多核

磁盘 IO 专业测试(FIO 行业标准)
# 安装
yum install fio -y || apt install fio -y
# 4K随机读写(云盘核心指标)
fio --randrepeat=1 --ioengine=libaio --direct=1 --gtod_reduce=1 --name=test --filename=test --bs=4k --iodepth=64 --size=4G --readwrite=randrw --rwmixread=75
dd 简易 IO(脚本内置,仅作参考)
dd if=/dev/zero of=test bs=1M count=1000 oflag=direct
网络带宽点对点测试 iperf3

两台机器互测真实带宽,区分 TCP/UDP 吞吐量、抖动、丢包

# 安装
yum install iperf3 -y
# 服务端:iperf3 -s
# 客户端:iperf3 -c 服务端IP

延迟长期监控 uPing(持续丢包 / 延迟日志)

wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/uPing/master/uping.py
python uping.py

硬件实时监控 s-tui(终端 CPU 温度负载可视化)

apt install s-tui -y || yum install s-tui -y
s-tui

四、Windows 服务器 / 独立主机测评软件(Windows VPS、物理机)

硬件信息检测
1.CPU-Z / GPU-Z:查看处理器、内存、显卡详细参数
2.CrystalDiskInfo:硬盘通电时间、健康度、写入量、是否二手盘
3.CrystalDiskMark:Windows 磁盘顺序 / 4K 读写测速(对标 Linux fio)
4.AIDA64:全能硬件检测、烤机压力测试、温度监控
网络测评
1.Speedtest.net 客户端:多节点上下行测速
2.WinMTR:Windows 可视化路由追踪(替代 NextTrace)
3.BestTrace Windows 版:三网回程路由
4.OpenTrace(GUI 可视化 NextTrace):https://github.com/Archeb/opentrace
稳定性压力测试
1.AIDA64 单烤 CPU / 双烤 CPU + 硬盘,测机房散热、降频
2.3DMark:Windows 独显性能跑分(GPU 服务器测评)

五、站长测评辅助配套工具

  1. IP 信息查询
    IP.SB/ IP138:查询 IP 归属、AS、机房、是否住宅 IP
    MaxMind GeoIP:精准定位城市、运营商
  2. 网站测速配套(主机建站能力测评)
    AB 压测:Apache Bench 并发请求测试
apt install apache2-utils
ab -n 1000 -c 100 https://你的域名

wrk:高性能 HTTP 压测,测服务器并发承载

apt install wrk
wrk -t4 -c100 -d30s https://域名

3.日志导出工具

所有脚本结尾加 | tee test.log 保存测评日志,方便写文章配图数据
示例:

bash <(curl -Lso- bench.sh) | tee bench-log.txt

4.多系统一键环境修复

# 安装测评依赖 curl/wget/unzip/git
apt update && apt install curl wget unzip git screen -y
yum install curl wget unzip git screen -y

六、测评标准使用流程(站长通用流程)

1.先跑综合脚本:SuperBench / 融合怪,获取基础图文数据
2.专项细分:流媒体解锁脚本 + NextTrace 回程
3.深度性能:YABS(FIO+Geekbench)、UnixBench
4.独服额外:硬盘通电检测脚本、AIDA64(Windows)
5.建站测评:iperf3 带宽、wrk/ab 并发压测
6.导出日志、截图,整理测评文章数据

文章广告横幅
网络违法犯罪举报平台 广告
© 版权声明
THE END
喜欢就支持一下吧
点赞193 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容