VPS常用脚本大全

准备工作

在测试的过程中,出现命令不充在,一般情况下你首先要安装wget和curl

Centos安装命令

yum install wget -y

Debian/ubuntu安装命令

apt-get install wget -y

提示证书问题可以使用以下命令

bash <(wget --no-check-certificate -qO- https://github.com/Aniverse/inexistence/raw/master/inexistence.sh)
#脚本1
wget -N "https://github.000060000.xyz/tcp.sh" && chmod +x tcp.sh && ./tcp.sh
#脚本2(进入网址查看)
https://github.com/Meilinhost/LotServer_Vicer

2、DD系统脚本一脚本DD各种linux脚本

来至萌伽大佬

wget --no-check-certificate -O AutoReinstall.sh https://git.io/AutoReinstall.sh && bash AutoReinstall.sh
#来自互联网

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

wget http://cdn.ipip.net/17mon/besttrace4linux.zip
#解压
unzip besttrace4linux.zip
#授权
chmod +x besttrace
#使用
./besttrace -q 1 这里是目标IP
#如果是64位系统则直接besttrace替换besttrace32
wget -qO- git.io/autobesttrace | bash

5、柠檬脚本可测试配置、IO、CPU、内存、路由

curl -fsL https://ilemonra.in/LemonBenchIntl | bash -s fast
wget -qO- bench.sh | bash
#测试VPS基础信息,以及下载速度,来自秋水逸冰
wget -qO- --no-check-certificate https://raw.githubusercontent.com/oooldking/script/master/superbench.sh | bash
bash <(curl -Lso- https://raw.githubusercontent.com/opear2008/superspeed/master/superspeed.sh)
bash <(curl -Lso- https://git.io/J1SEh)

9、UnixBench测试脚本(UnixBench是一个类unix系(Unix,BSD,Linux)统下的性能测试工具,一个开源工具,被广泛用与测试Linux系统主机的性能。Unixbench的主要测试项目有:系统调用、读写、进程、图形化测试、2D、3D、管道、运算、C库等系统基准性能提供测试数据。)

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

10、独服测试硬件脚本

wget -q https://github.com/Aniverse/A/raw/i/a &amp;&amp; bash a

11、superbenchpro

可测试配置、IO、跑分、网速

bash &lt;(wget --no-check-certificate -O- https://dl.233.mba/sh/superbenchpro.sh)

12、路由测试

柠檬脚本可以直接测试路由,以下脚本可以直接测试三网路由,每个网络有三个节点

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

14、存检测脚本

FunctionClub大佬作品,本程序检测的可分配内存指的是用户使用时最大能占用的内存量。特点:检测VPS真实可分配内存,适用于检测VPS超售情况

#CentOS / RHEL
yum install wget -y
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 wget build-essential -y
wget https://raw.githubusercontent.com/FunctionClub/Memtester/master/memtester.cpp
gcc -l stdc++ memtester.cpp
./a.out