Debian设置允许root用户以ssh方式登录
debian默认不允许以root用户登录,必须以其他用户登录,然后su命令切换到root用户才可以操作
1.修改/etc/ssh/sshd_config文件
#将以下配置改为:PermitRootLogin yes
#PermitRootLogin prohibit-password
然后重启ssh服务,即可
service sshd restart
2.顺便写一下允许root用户登录系统
2.1修改/etc/gdm3/daemon.conf文件,新增
[security]
AllowRoot = true
2.2修改/etc/pam.d/gdm-password,注释掉以下内容:
#auth required pam_succeed_if.so user != root quiet_success
重启系统即可
原文: https://www.cnblogs.com/liu-ke/p/14166097.html
标签:登录,用户,etc,ssh,root,Debian From: https://www.cnblogs.com/fairy8781/p/17616691.html