自用服务器脚本大全:一键测评、工具与部署指南

自用服务器脚本大全:一键测评、工具与部署指南
杨幂的脚自用常用脚本汇总
主要是自用备忘,不要当成推荐表单,使用后果自负!
测评类
IP质量体检脚本
shell
1 | bash <(curl -Ls IP.Check.Place) |
VPS融合怪服务器测评脚本
shell
1 | curl -L https://github.com/spiritLHLS/ecs/raw/main/ecs.sh -o ecs.sh && chmod +x ecs.sh && bash ecs.sh -m 1 |
检测VPS内存是否超售的一键脚本
shell
1 | curl https://raw.githubusercontent.com/uselibrary/memoryCheck/main/memoryCheck.sh | bash |
工具类
vps一键脚本工具
shell
1 | curl -fsSL https://raw.githubusercontent.com/eooce/ssh_tool/main/ssh_tool.sh -o ssh_tool.sh && chmod +x ssh_tool.sh && ./ssh_tool.sh |
部署类
xeefei/3x-ui
shell
1 | bash <(curl -Ls https://raw.githubusercontent.com/xeefei/3x-ui/master/install.sh) |
甬哥x-ui
shell
1 | bash <(curl -Ls https://raw.githubusercontent.com/yonggekkk/x-ui-yg/main/install.sh) |
甬哥Sing-box精装桶
shell
1 | bash <(curl -Ls https://gitlab.com/rwkgyg/sing-box-yg/raw/main/sb.sh) |
DD重装
一键脚本
shell
1 | curl -O https://raw.githubusercontent.com/bin456789/reinstall/main/reinstall.sh && bash reinstall.sh |
功能 : 安装 Linux
- 不输入版本号,则安装最新版
- 不含 boot 分区(Fedora 例外),不含 swap 分区,最大化利用磁盘空间
- 在虚拟机上,会自动安装官方精简内核
安装 Debian / Kali 时,x86 可通过后台 VNC 查看安装进度,ARM 可通过串行控制台查看安装进度。
安装其它系统时,可通过多种方式(SSH、HTTP 80 端口、后台 VNC、串行控制台)查看安装进度。
bash
1 | bash reinstall.sh centos 7|9 (9 为 stream 版本) |