VPS常用测试脚本

VPS检测 (二选一)

wget -q https://github.com/Aniverse/A/raw/i/a && bash a
wget -qO- bench.sh |  bash

三网测速脚本

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

三网回程测试脚本(二选一)

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

4.9以上内核一键开启BBR脚本

echo "net.core.default_qdisc=fq"  >>  /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr"  >>  /etc/sysctl.conf
sysctl -p
lsmod | grep bbr

或者

wget -N --no-check-certificate "https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh" && chmod +x tcp.sh && ./tcp.sh

综合工具箱(强烈推荐,集成了很多脚本)

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

DD相关

DD成Debian 11

bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -d 11 -v 64 -p 123456 -port 22

DD成Ubuntu 20.04

bash <(wget --no-check-certificate -qO- 'https://raw.githubusercontent.com/MoeClub/Note/master/InstallNET.sh') -u 20.04 -v 64 -p 123456 -port 22

密码:123456
SSH:22

其他DD脚本

wget –no-check-certificate -O AutoReinstall.sh https://git.io/AutoReinstall.sh && bash AutoReinstall.sh

默认的密码是 :Pwd@CentOS 或者 Pwd@Linux

具体是哪一个密码在重装时会提示,重装完成后建议修改这个root密码,使用 passwd 命令即可修改。

这个一键重装系统的脚本自动获取IP地址网关子网掩码自动判断网络环境,选择国内/外镜像,再也不用担心卡半天了超级懒人一键化,无需复杂的命令解决萌咖脚本中一些导致安装错误的问题CentOS 7镜像抛弃LVM,回归ext4,减少不稳定因素。

更新组件

apt update -y && apt install -y curl && apt install -y socat && apt install wget -y

升级 packages

sudo -i

apt update -y

apt install wget curl sudo vim git -y
posted @ 2023-07-22 22:17  木瓜有点甜  阅读(55)  评论(0编辑  收藏  举报