Ubuntu 开启root用户登陆
版本 20、22 的Ubuntu都可以
su #切换到root账户下面 如果不行。
# 如果Su不行,请输入 sudo -i, 然后用密码登陆 密码一般为当前账户的密码,必须有sudo的权限
passwd root # 先把root的密码设置一下,默认情况下 root 是没有设置密码的。
apt install -y openssh-server
nano /etc/ssh/sshd_config
# 找到 #PermitRootLogin 将其改成 PermitRootLogin yes
# 找到 #PasswordAuthentication 将其改成 PasswordAuthentication yes
# ctrl+s 保存。ctrl+x 退出
systemctl enable sshd # 配置开机启动
systemctl restart sshd # 重启sshd服务
完毕。
标签:sshd,ctrl,开启,密码,登陆,Ubuntu,root From: https://www.cnblogs.com/RemMai/p/17773888.html