您的位置 首页 linux

VPS测评常用的脚本 命令

VPS回程路由一键测试脚本

wget -qO- git.io/besttrace | bash

LemonBench 综合性能测试工具脚本

快速测试

yum -y install wget
wget -O- https://ilemonra.in/LemonBenchIntl | bash -s fast
#或
apt-get install curl
curl -fsL https://ilemonra.in/LemonBenchIntl | bash -s fast 

#朱纯树博客备用
yum -y install wget
wget -qO- https://downloads.zhuchunshu.com/LemonBenchIntl.sh | bash -s fast

完整测试

yum -y install wget
wget -O- https://ilemonra.in/LemonBenchIntl | bash -s full
#或
apt-get install curl
curl -fsL https://ilemonra.in/LemonBenchIntl | bash -s full

#朱纯树博客备用
yum -y install wget
wget -qO- https://downloads.zhuchunshu.com/LemonBenchIntl.sh | bash -s full

SuperBench

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

使用参数的方法:

wget -qO- git.io/superbench.sh | bash -s info

wget -qO- git.io/superbench.sh | bash -s io

wget -qO- git.io/superbench.sh | bash -s speed

wget -qO- git.io/superbench.sh | bash -s fast

wget -qO- git.io/superbench.sh | bash -s share

VPS性能测试:CPU物理个数、内核、超线程、多核心

登录VPS界面,执行:

cat /proc/cpuinfo

直接查看逻辑CPU的个数

cat /proc/cpuinfo |grep physical id |sort |uniq

直接查看CPU的型号

cat /proc/cpuinfo |grep model name |sort |uniq

单个CPU的内核数

cat /proc/cpuinfo |grep cpu cores |sort |uniq

总的CPU线程数

cat /proc/cpuinfo |grep processor

查看购买的VPS主机的内存信息

cat /proc/meminfo

Linux真正占用的内存

free m

测试VPS主机磁盘IO的性能可以执行以下两个命令

dd if=/dev/zero of=test bs=64k count=4k oflag=dsync
dd if=/dev/zero of=test bs=8k count=256k conv=fdatasync

生成1TB的超大文件

dd if=/dev/zero of=1T.img bs=1G seek=1024 count=0

bs=1G表示每一次读写1G数据,count=0表示读写0次,seek=1024表示略过1024个Block不写,前面block size是1G,所以共略过1T!
这是创建大型sparse文件最简单的方法。

SSD硬盘速度测试

yum install hdparm -y
fdisk -l
hdparm -t /dev/hda

UnixBench跑分工具

wget https://teddysun.com/wp-content/uploads/unixbench.sh
chmod +x unixbench.sh
./unixbench.sh

 

Superspeed 一键测速脚本

用于测速服务器上传/下载速度

bash <(curl -Lso- https://git.io/superspeed)

1,VPS测试

wget -qO- bench.sh | bash
#测试VPS基础信息,以及下载速度,来自官网(https://bench.sh/)

2,国内测试

wget -qO- git.io/superbench.sh | bash
#主要包括VPS硬件信息,国内节点测试,电信、联通、移动,来自老鬼

3,基础测试

中文版:
wget -N --no-check-certificate https://raw.githubusercontent.com/moranchenxi/ZBench/master/ZBench-CN.sh && bash ZBench-CN.sh
英文版:
wget -N --no-check-certificate https://raw.githubusercontent.com/moranchenxi/ZBench/master/ZBench.sh && bash ZBench.sh
#基于superbench脚本,增加了路由和ping测试,区别中英文

4,网速测试

wget https://raw.githubusercontent.com/oooldking/script/master/superspeed.sh && chmod +x superspeed.sh && ./superspeed.sh
#主要包括国内的一些节点进行专项测试,电信、联通、移动,来自老鬼

5,Ping测试

wget -N --no-check-certificate https://raw.githubusercontent.com/FunctionClub/uPing/master/uping.py
python uping.py
#一款长时间ping测试py脚本

6,html5网速程序

https://github.com/adolfintel/speedtest
#需要php环境,下载后解压即可运行,无须安装

7,锐速/BBR集成一键包

wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh
#一键安装锐速/bbr,以及魔改等,支持卸载、升级等操作。

8,锐速一键包

wget -N --no-check-certificate https://github.com/91yun/serverspeeder/raw/master/serverspeeder.sh && bash serverspeeder.sh
#一键安装锐速破解全功能版,不支持openvz架构,来自91yun(https://www.91yun.co/archives/683)

9,GoogleBBR一键脚本

wget --no-check-certificate https://github.com/teddysun/across/raw/master/bbr.sh&& chmod + x bbr.sh && ./bbr.sh
#一键安装并开启bbr功能,google出品的一种TCP拥塞算法,不支持openvz虚拟架构。

10,锐速一键包

wget --no-check-certificate -O appex.sh https://raw.githubusercontent.com/0oVicero0/serverSpeeder_Install/master/appex.sh && chmod +x appex.sh && bash appex.sh install
#另一位爱好者开发的锐速一键安装脚本,开发:https://github.com/0oVicero0/serverSpeeder_Install(看了下是萌卡大佬的)

11,FS一键包

wget -N --no-check-certificate https://raw.githubusercontent.com/91yun/finalspeed/master/install_fs.sh && bash install_fs.sh
#一键安装finalspeed功能,支持全系架构

12,自动备份脚本

wget -N --no-check-certificate https://raw.githubusercontent.com/Himly/vps-shell/master/AutoBackupToFtp.sh
chmod +x AutoBackupToFtp.sh
bash AutoBackupToFtp.sh
#每天自动备份MYSQL及打包网站目录

13,VPS跑分测试

wget --no-check-certificate https://github.com/teddysun/across/raw/master/unixbench.sh
chmod +x unixbench.sh
./unixbench.sh
#unixbench进行跑分测试,单核和多核不同跑分

14,Linux测试脚本

apt install curl -y
yum install curl -y
curl -fsSL https://ilemonrain.com/download/shell/LemonBench.sh | bash -s fast

15,老鬼Linux测试脚本

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

 您阅读这篇文章共花了:

关于作者: YJ大表哥

热门文章

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注