前提:版本是Canonical Ubuntu 16.04,避免乱七八糟bug
把下面脚本扔进CLOUD-INIT即可,除了系统,其他不更改
#!/bin/bash
echo root:Abc123456 |sudo chpasswd root
sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;
sudo sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config;
sudo service sshd restart
不需要密钥 直接用root账号登录 初始账号root 密码Abc123456
centOS 6.9 64bit(未实验,谨慎使用):
bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -c 6.9 -v 64 -a -firmware
debian 10 64bit(推荐,来回dd几十次正常):
bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -d 10 -v 64 -a -firmware
Ubuntu 16.04 64bit(未实验,谨慎使用):
bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -u 16.04 -v 64 -a -firmware
Ubuntu 18.04 64bit(未实验,谨慎使用):
bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -u 18.04 -v 64 -a -firmware
Ubuntu 20.04 64bit(未实验,谨慎使用):
bash <(wget --no-check-certificate -qO- 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh') -u 20.04 -v 64 -a -firmware
dd时间大概15分钟左右 初始账号root 密码MoeClub.org
dd完换内核加bbr,一气呵成
https://github.com/ylx2016/Linux-NetSpeed
(有大佬说修改DNS不行,MJJ可以试试,我是可以的)
至于有MJJ说oracle看不了全球最大教育网站p站,应该是dns问题,直接更改resolv.conf不行,reboot后文件会被恢复,暂时用以下解决办法
debian:
apt-get install resolvconf
vim /etc/resolvconf/resolv.conf.d/head
然后加入以下,再reboot即可
nameserver 1.1.1.1
nameserver 8.8.8.8
# 修改locale文件
vim /etc/default/locale
#删除全部内容,添加下面的内容
LANG=en_US.UTF-8
#重启系统
reboot
暂无评论内容