好人卡资源网
个人常用VPS脚本

卸载内核版本

wget -O tcp.sh https://git.io/coolspeeda” && chmod +x tcp.sh && ./tcp.sh

不卸载内核版本

wget -O tcpx.sh https://git.io/JYxKU” && chmod +x tcpx.sh && ./tcpx.sh

老鬼大佬的SuperBench测试脚本:

个人常用VPS脚本

秋水逸冰大佬的UnixBench.sh:

个人常用VPS脚本
chmod +x unixbench.sh
./unixbench.sh

LemonBench.sh:

特点

  • 服务器基础信息(CPU信息/内存信息/Swap信息/磁盘空间信息等)
  • 流媒体解锁情况
  • Speedtest网速测试 (本地到最近源及国内各地域不同线路的网速)
  • 磁盘测试(4K块/1M块 直接写入测试)
  • 路由追踪测试(追踪到国内和海外不同线路的路由信息)
  • Spoofer测试(获取详细网络信息,快速判断服务器接入线路)
个人常用VPS脚本

快速测试:

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

完整测试:

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

FunctionClub大佬的内存检测脚本:

检测VPS真实可分配内存,适用于检测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