基本所有的VPS服务器商家,都会提供免费的Linux系统供安装,比如CentOS、Debian、Ubuntu等。那为什么还要使用一键DD脚本重装/更换系统呢?
- 商家提供的系统版本有限,可能没有自己需要的版本。
- 商家的系统安装有自己不想要的服务,比如国内的阿里云盾(安骑士)。
- 商家的系统无法安装特定软件,比如很挑内核的锐速。
以上几种情况,一键DD脚本就可以为服务器更换一个纯净的系统,帮你解决问题。
DD一键命令示例:
bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -d 11 -v 64 -a
系统安装完成后的默认用户名为root,默认密码为: MoeClub.org 如修改为自己的密码(fansun.com)示例
sudo -i
echo root:fansun.com |chpasswd root
sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;
sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config;
service sshd restart
有显示进度的一键dd脚本可以用了《利用可显进度的一键DD脚本1keydd安装win10(同时支持bios,uefi,支持vps,独服,计算实例)》https://www.bilibili.com/video/BV17B4y1b79Y 命令:wget -qO- inst.sh|bash