本文及资源最后更新时间 2021-11-06 by sky995

卸载内核版本
不卸载内核版本
老鬼大佬的SuperBench测试脚本:

wget -qO- –no-check-certificate https://raw.githubusercontent.com/oooldking/script/master/superbench.sh | bash
秋水逸冰大佬的UnixBench.sh:

wget –no-check-certificate https://github.com/teddysun/across/raw/master/unixbench.sh
chmod +x unixbench.sh
./unixbench.sh
LemonBench.sh:
特点
- 服务器基础信息(CPU信息/内存信息/Swap信息/磁盘空间信息等)
- 流媒体解锁情况
- Speedtest网速测试 (本地到最近源及国内各地域不同线路的网速)
- 磁盘测试(4K块/1M块 直接写入测试)
- 路由追踪测试(追踪到国内和海外不同线路的路由信息)
- Spoofer测试(获取详细网络信息,快速判断服务器接入线路)

快速测试:
完整测试:
FunctionClub大佬的内存检测脚本:
检测VPS真实可分配内存,适用于检测VPS超售情况

CentOS / RHEL:
yum install wget -y
yum groupinstall “Development Tools” -y
gcc -l stdc++ memtester.cpp
./a.out
Ubuntu / Debian
apt-get update
apt-get install wget build-essential -y
gcc -l stdc++ memtester.cpp
./a.out