一键DD/重装脚本 (One-click reinstall OS on VPS) 2024-06-06 Website News 暂无评论 439 次阅读 最近折腾了几个DD的脚本,发现都不错,收集起来给大家使用,所有的资源都来自互联网。 ## 原版萌咖的脚本 系统安装完成后的默认用户名为root,默认密码为: ```csharp MoeClub.org ``` 以下命令中的 -c 为CentOS,-d 为Debian,-u为Ubuntu,后面数字表示为版本号,-v 后面为64位/32位,可根据需求进行替换。 # CentOS 6.10 64位: ```csharp bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -c 6.10 -v 64 -a ``` # CentOS 6.10 32位: ```csharp bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -c 6.10 -v 32 -a ``` # Debian 8 64位: ```csharp bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -d 8 -v 64 -a ``` # Debian 9 64位: ```csharp bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -d 9 -v 64 -a ``` # Ubuntu 12.04 64位: ```csharp bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -u 12.04 -v 64 -a ``` # Ubuntu 14.04 64位: ```csharp bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -u 14.04 -v 64 -a ``` # Ubuntu 16.04 64位: ```csharp bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -u 16.04 -v 64 -a ``` # Ubuntu 18.04 64位: ```csharp bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -u 18.04 -v 64 -a ``` ## hicasper优化版 ```csharp wget --no-check-certificate -O AutoReinstall.sh https://git.io/AutoReinstall.sh && bash AutoReinstall.sh ``` ## 猫饭优化版 ```csharp wget --no-check-certificate -O AutoReinstall.sh https://git.io/betags && chmod a+x AutoReinstall.sh && bash AutoReinstall.sh ``` ##Github bin456789优化版 ```csharp curl -O https://raw.githubusercontent.com/bin456789/reinstall/main/reinstall.sh bash reinstall.sh ``` 标签: VPS, DD, 重装, reinstall, one, 一键, 脚本 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭