使用 root 登录 Ubuntu系统

Linux

以 Ubuntu 操作系统为例,

默认是不允许 root  登录的,

如果希望以  root 身份登录操作系统,

需要修改 ssh 的配置文件 /etc/ssh/sshd_config

修改 PermitRootLogin 值为 yes

修改 PasswordAuthentication 值为 yes

然后重新启动 ssh 服务即可

systemctl restart ssh.service

或者

service ssh restart