Deepin(Ubuntu)使用root账户登录

Deepin(Ubuntu)使用root账户登录

  1. 激活root账户
sudo passwd root
  1. 切换到root账户

     在终端执行

 su root` 

输入密码
3. 在配置文件lightdm.conf末尾添加两行代码

vim /etc/lightdm/lightdm.conf

添加下面的代码

greeter-hide-user=true   
greeter-show-manual-login=true

重启系统。
用Xshell root连接时显示ssh服务器拒绝了密码,应该是应该是sshd的设置不允许root用户用密码远程登录
修改

vim /etc/ssh/sshd_config

找到

# Authentication:
LoginGraceTime 120
PermitRootLogin prohibit-password
StrictModes yes

改成

# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes

然后输入命令

/etc/init.d/ssh restart 

重启ssh服务即可。

你可能感兴趣的:(程序猿学习笔记)