随着centos的落幕,使用ubuntu系统的机房逐渐多起来,但是ubuntu的安全设置权限很高,默认不能使用root进行远程安装,需要参考以下方法进行设置才能远程登录安装。

1. 用ssh登录服务器,编辑/etc/ssh/sshd_config文件

sudo vi /etc/ssh/sshd_config

找到 #PermitRootLogin 这一行 改为

PermitRootLogin yes

注意要把 # 号去掉

保存退出

2. 更改root密码

sudo  passwd root

3. 重启 ssh 服务

sudo systemctl restart ssh