ubuntu server 20.4设置使用root登录
ubuntu@ubuntu:~$ sudo passwd root New password: Retype new password: passwd: password updated successfully ubuntu@ubuntu:~$ su root # 切换到root账户 Password: root@ubuntu:/home/ubuntu#
使用vim /etc/ssh/sshd_config
编辑配置文件
找到#PermitRootLogin prohibit-password
并在下面新建一行PermitRootLogin yes
#PermitRootLogin prohibit-password PermitRootLogin yes
保存并退出!然后输入reboot
重启树莓派
然后就可以使用ssh远程登录root账号了