VPS 网络重装 Debian 系统

Author Avatar
青枫 2022年04月23日
  • 在其它设备中阅读本文章

简介

一个网络重装最小化 Debian 脚本

支持的原系统

  • Debian 8 或更高版本
  • Ubuntu 14.04 或更高版本
  • CentOS 7 或更高版本

2024.3.21 补充

小内存 VPS 需添加参数 --force-lowmem 1 强制设置为低内存模式 1

添加参数后 384M 内存的 VPS 成功重装

重装为 Debian 11

curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh && chmod a+rx debi.sh
./debi.sh --cdn --network-console --ethx --bbr --user root --password <新系统用户密码> --force-lowmem 1 --version 11
shutdown -r now

2024.2.5 补充

重装为 Debian 12

curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh && chmod a+rx debi.sh
./debi.sh --cdn --network-console --ethx --bbr --ip <你的IP> --gateway <你的网关> --netmask <你的掩码> --dns '1.1.1.1 8.8.8.8' --ssh-port 22 --user root --password <新系统用户密码> --version 12 --timezone Asia/Shanghai
shutdown -r now

重装为 Debian 11

curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh && chmod a+rx debi.sh
./debi.sh --cdn --network-console --ethx --bbr --user root --password <新系统用户密码> --version 11
shutdown -r now

重装为 Debian 10

curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh && chmod a+rx debi.sh
./debi.sh --cdn --network-console --ethx --bbr --user root --password <新系统用户密码> --version 10
shutdown -r now

重装为 Debian 9

curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh && chmod a+rx debi.sh
sudo ./debi.sh --cdn --network-console --ethx --bbr --user root --password <新系统用户密码> --version 9
sudo shutdown -r now

约 30 秒后可以尝试 SSH 登录 installer 用户,密码与之前设置的相同。如果成功连接,可以按 Ctrl-A 然后再按 4 监控安装日志。安装完成后会自动重启进入新系统。


更多用法参考 GitHub 主页:

https://github.com/bohanyang/debi