基本所有的 VPS 服务器商家都会提供免费的 Linux 系统,比如 CentOS、Debian、Ubuntu 等。那为什么还要使用 一键 DD 脚本 来重装/更换系统呢?
为什么要使用一键 DD 脚本?
- 商家提供的系统版本有限,可能没有自己需要的版本。
- 商家的系统安装了不需要的服务,比如国内的阿里云盾(安骑士)。
- 商家的系统无法安装特定软件,比如需要特定内核的锐速。
针对以上情况,一键 DD 脚本 就可以为服务器更换一个纯净的系统,帮你解决问题。
所需环境
以 Vicer 一键 DD 为例,其所需环境为:
- 架构: KVM / XEN(不支持 OpenVZ)
- 系统: Debian / Ubuntu / CentOS
一键 DD 脚本使用教程
注意事项:
- Vicer 脚本 不支持 重装 CentOS 7,仅支持 CentOS 6.9 以下版本。
- DD 脚本安装的系统均来自官方发行版。
- 安装过程 全自动 进行,无需 VNC 操作,也无需进入救援模式。
- 系统安装完成后的默认用户名:
root
- 默认密码:
MoeClub.org
DD 脚本示例
说明: 由于脚本命令中需要指定目标系统版本,以下提供了不同系统版本的命令示例,你可以 直接复制使用,或者 修改命令中的系统版本 以适应自己的需求。
重装为 CentOS
-c
代表 CentOS 版本号,-v
代表 64 位或 32 位架构。
# CentOS 6.10 64 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -c 6.10 -v 64 -a
# CentOS 6.10 32 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -c 6.10 -v 32 -a
---
重装为 Debian
> -d 代表 Debian 版本号,-v 代表 64 位或 32 位架构。
# Debian 8 64 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -d 8 -v 64 -a
# Debian 9 64 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -d 9 -v 64 -a
# Debian 10 64 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -d 10 -v 64 -a
# Debian 11 64 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -d 11 -v 64 -a
# Debian 12 64 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -d 12 -v 64 -a
---
重装为 Ubuntu
> -u 代表 Ubuntu 版本号,-v 代表 64 位或 32 位架构。
# Ubuntu 12.04 64 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -u 12.04 -v 64 -a
# Ubuntu 14.04 64 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -u 14.04 -v 64 -a
# Ubuntu 16.04 64 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -u 16.04 -v 64 -a
# Ubuntu 18.04 64 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -u 18.04 -v 64 -a
# Ubuntu 20.04 64 位:
bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -u 20.04 -v 64 -a
---
关于系统重装过程
运行包含正确系统版本号的脚本后,新系统的安装会 自动进行,无需人工干预。
> 安装过程中可能出现的情况:
1. 正常安装: 大约 10 分钟 内完成,期间可以在 VNC 观察安装进度。
2. CentOS 7 不支持: 如果尝试安装 CentOS 7,会提示 不支持。
3. 不支持的系统版本: 输入错误的系统版本号,会提示 安装中止。
---
重装系统后修改 root 密码
出于安全考虑,建议 重装后立即修改 root 密码。
步骤:
1. 使用 Putty 等 SSH 终端,使用 默认密码 登录服务器。
2. 输入以下命令修改 root 密码:
passwd root
3. 终端会提示输入 新密码(两次)。
> 提示: 输入密码时不会有任何显示(包括光标移动),属于 正常现象。
4. 重新登录 SSH,使用 新密码 登录即可。
---
总结
通过 Vicer 一键 DD 脚本,可以轻松为 VPS 服务器安装 纯净版 Linux 系统,支持 CentOS、Debian、Ubuntu 等多个发行版,并且 自动化安装,无需复杂操作。
如果你有 VPS 服务器需要 重装系统,不妨试试 DD 脚本,让你的服务器更干净、更高效!
如果本文对你有帮助,请点赞、评论或分享!
---
文章转载说明:
原文链接: https://www.moeelf.com/archives/293.html