目录
隐藏
VPS 融合怪服务器一键测评脚本 (VPS Fusion Monster Server Test Script)
curl -L https://github.com/spiritLHLS/ecs/raw/main/ecs.sh -o ecs.sh && chmod +x ecs.sh && bash ecs.sh
IP 解锁
IP质量体检脚本,结果仅供参考,主要看数据库数据。媒体的解锁会经常变化。
bash <(curl -Ls IP.Check.Place)
路由追踪
curl nxtrace.org/nt |bash
OpenVZ/LXC 系统重装脚本
wget -qO OsMutation.sh https://raw.githubusercontent.com/LloydAsp/OsMutation/main/OsMutation.sh && chmod u+x OsMutation.sh && ./OsMutation.sh
Debian 系统自动重装脚本;仅支持 X86 平台,且源系统需为 Debian 或者 Ubuntu
# 交互式脚本,目前支持主机名、SSH端口、Root密码和BBR设定。 apt update apt install curl wget net-tools -y bash <(curl -sL https://github.com/bihell/debian-dd/raw/main/debian-dd)
备用:默认安装 Debian、启用 BBR、随机密码和一些软件。
wget --no-check-certificate -qO InstallNET.sh 'https://raw.githubusercontent.com/bihell/ReInstall-Linux/master/Linux_reinstall/InstallNET.sh' && chmod a+x InstallNET.sh bash InstallNET.sh -hostname "digital-review"
VPS 一键 DD 系统
wget --no-check-certificate -O AutoReinstall.sh https://git.io/AutoReinstall.sh && bash AutoReinstall.sh
DD 磁盘测试
# 生成 5G 文件,顺序 dd if=/dev/zero of=5GB_file bs=1M count=5120 # 生成 5G 文件,随机 dd if=/dev/urandom of=5GB_file bs=1M count=5120
HTTP 下载测试
# 启动简易 http 服务 python3 -m http.server # 客户端 # 直接用浏览器下载或其他工具下载 wget http://你服务器的IP:8000/5GB_file
如何检测 KVM 服务器内存是否超售
lsmod | grep virtio_balloon
Yabs (Yet-Another-Bench-Script)一键测试脚本,fio/iperf3、IOPS、Benchmark 4/5/6
curl -sL yabs.sh | bash #脚本来自https://github.com/masonr/yet-another-bench-script
Superspeed 测速脚本
bash <(curl -Lso- https://git.io/superspeed) #基于Oldking制作脚本修改的,新增5G节点下载测试
禁用或启用 IPv6
脚本支持: IPv4/IPv6 优先级调整;启用/禁用 IPv6:
bash <(curl -Lso- https://sh.vps.dance/ip46.sh)
手动禁用 VPS 的 IPv6 命令:
sysctl -w net.ipv6.conf.all.disable_ipv6=1 sysctl -w net.ipv6.conf.default.disable_ipv6=1
如果想重启系统也生效, 执行:
echo 'net.ipv6.conf.all.disable_ipv6=1' >> /etc/sysctl.conf echo 'net.ipv6.conf.default.disable_ipv6=1' >> /etc/sysctl.conf
手动 启用 VPS 的 IPv6 命令:
sysctl -w net.ipv6.conf.all.disable_ipv6=0 sysctl -w net.ipv6.conf.default.disable_ipv6=0
重新载入 sysctl 配置
sysctl --system # reload sysctl
如果重载, 还无效果, 可能要 reboot 重启下.
查看 VPS 的 IPv6 信息
输入命令: ip -6 addr show scope global 或者 curl ipv6.ip.sb
为什么要禁用 VPS 的 IPv6?
在拥有 IPv6 地址之后,网络协议规定优先使用 IPv6, IPv6 的线路质量可能不如 IPv4,另外很多网站目前没有支持 IPv6。
启用 IPv6 可以干什么?
- 突破封锁;有些站点仅能 IPv6 访问, 或 IPv4 被封, 或者用 IPv6 解锁流媒体等。
- 突破限制;有些网络 ipv6 表现更优。
待完继续
转载请注明:VPS站长网 » Linux 服务器 VPS 性能一键测试脚本,路由跟踪/一键DD系统/IP解锁检测/下载上传速率测速/超兽检测/BBR加速一键开启脚本