VPS服务器测试脚本合集-七大脚本全面检测

脚本一:
机器配置检测,
检测CPU、内存、负载、IO读写、机房带宽和服务器类型等

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

-----------------------------------------------------------------------------------
脚本二:
FIO,测试 跑脚本
带iperf3测试
curl -sL yabs.sh | bash
or
wget -qO- yabs.sh | bash

curl -sL yabs.sh | bash -s -- fdighr49

-f/-d此选项禁用 fio(磁盘性能)测试
-i 此选项禁用 iperf(网络性能)测试
-g 此选项禁用 Geekbench(系统性能)测试
-h 此选项打印包含使用情况、检测到的标志和本地包 (fio/iperf) 状态的帮助消息
-r 此选项减少了 iperf 位置的数量 (Online.net/Clouvider LON+NYC) 以减少带宽使用
-4 此选项会覆盖 Geekbench 5 性能测试并改为运行 Geekbench 4 测试
-9 除了 Geekbench 5 测试之外,此选项还运行 Geekbench 4 测试
-----------------------------------------------------------------------------------
脚本三:
speedtest.net亚洲区节点测试

curl -LsO bench.monster/speedtest.sh; bash speedtest.sh -asia

Speedtest分地区测速脚本
Server/VPS Speedtest Script, system info, I/O test and speedtest

Global Speedtest
curl -LsO bench.monster/speedtest.sh; bash speedtest.sh

# Benchmark & The 美国 Speedtest

curl -LsO bench.monster/speedtest.sh; bash speedtest.sh -us

# Benchmark & 欧洲 Speedtest

curl -LsO bench.monster/speedtest.sh; bash speedtest.sh -eu

# Benchmark & 中东 Speedtest

curl -LsO bench.monster/speedtest.sh; bash speedtest.sh -me

# Benchmark & 亚洲 Speedtest

curl -LsO bench.monster/speedtest.sh; bash speedtest.sh -asia

# Benchmark & 南美 Speedtest

curl -LsO bench.monster/speedtest.sh; bash speedtest.sh -sa

-----------------------------------------------------------------------------------

脚本四:
跑Unix bench 跑分

wget --no-check-certificate https://github.com/teddysun/across/raw/master/unixbench.sh
chmod +x unixbench.sh
./unixbench.sh
-----------------------------------------------------------------------------------

脚本五:
回程到国内三网的测试
北京、上海、广州

wget https://raw.githubusercontent.com/yishengzuiai1128/LemonBench/master/LemonBench.sh
bash LemonBench.sh --trfull

-----------------------------------------------------------------------------------

脚本六:
IP可解锁流媒体测试

脚本1
wget -O nf https://cdn.jsdelivr.net/gh/sjlleo/netflix-verify/CDNRelease/nf_2.60_linux_amd64 && chmod +x nf && clear && ./nf -method full

脚本2
bash <(curl -sSL "https://git.io/JswGm")

脚本3测试奈飞
wget -O nf https://cdn.jsdelivr.net/gh/sjlleo/netflix-verify/CDNRelease/nf_2.60_linux_amd64 && chmod +x nf && clear && ./nf -method full

脚本4 全面检测
bash <(curl -L -s https://raw.githubusercontent.com/lmc999/RegionRestrictionCheck/main/check.sh)

--------------------------------------------------------------------------------
脚本七:
内存超售检测
Memtester

apt-get update
apt-get install wget build-essential -y
wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/Memtester/master/memtester.cpp
gcc -l stdc++ memtester.cpp
./a.out

阅读剩余
THE END