Administrator
发布于 2024-11-22 / 5 阅读
0
0

vps性能检测脚本

Bench.sh

  wget -qO- bench.sh | bash
  #或者
  curl -Lso- bench.sh | bash
  #或者
  wget -qO- 86.re/bench.sh | bash
  #或者
  curl -so- 86.re/bench.sh | bash

SuperBench.sh

  wget -qO- git.io/superbench.sh | bash 
  #或者
  curl -Lso- git.io/superbench.sh | bash
  #或者
  wget -qO- oldking.net/superbench.sh | bash

yabs.sh

  curl -sL yabs.sh | bash

HyperSpeed

  bash <(wget -qO- https://bench.im/hyperspeed)

超开检测器

检测服务器当前可用刚在,判断商家是否超开

CentOS/RHEL

  yum install -y wget
  yum groupinstall "Development Tools" -y
  wget https://raw.githubusercontent.com/FunctionClub/Memtester/master/memtester.cpp
  gcc -l stdc++ memtester.cpp
  ./a.out

Ubuntu/Debian

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

Geekbench

  wget https://cdn.geekbench.com/Geekbench-5.2.3-Linux.tar.gz
  tar -xzf Geekbench-5.2.3-Linux.tar.gz
  cd Geekbench-5.2.3-Linux
  ./geekbench5

UnixBench

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

LemonBench.sh

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

mPing.sh

  wget https://raw.githubusercontent.com/helloxz/mping/master/mping.sh
  bash mping.sh

三网回程国内路由检测

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

Besttrace4Linux路由测试脚本(链路可视化)

  wget http://cdn.ipip.net/17mon/besttrace4linux.zip
  unzip besttrace4linux.zip
  chmod +x besttrace
  ./besttrace -q 1 目标ip

BlueSkyXN综合工具箱

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

monster

  curl -Ls0 bench.monster/speedtest.sh; bash speedtest.sh -Asia

综合脚本

  wget git.io/vpstest && bash vpstest


评论