麒麟系统开启root账户自动登陆及开启root用户SSH远程登录

开启root账户自动登陆
PS:编辑命令输入i编辑,按Esc退出输入:wq!保存
1、输入下方命令对95-ukui-greeter.conf进行编辑

sudo vim /usr/share/lightdm/lightdm.conf.d/95-ukui-greeter.conf

在文末添加下方2行

greeter-show-manual-login=true
all-guest=false

2、输入下方命令对.profile进行编辑

sudo vim /root/.profile

打开文件如下的文件内容为:

if [ "$BASH" ]; then
  if [ -f ~/.bashrc ]; then
    . ~/.bashrc
  fi
fi
mesg n 2> /dev/null || true

修改最后一行改为下方内容

tty -s && mesg n || true

3、输入下方命令对lightdm.conf 文件编辑修改登录选项

sudo vim /etc/lightdm/lightdm.conf

修改后如下

开启root用户SSH远程登录
1、输入下方命令进入root权限先编辑

sudo -i

2、输入下方命令修改SSH配置文件

vim /etc/ssh/sshd_config 

3、找到或添加以下内容:

PermitRootLogin yes
PubkeyAuthentication yes
PasswordAutherntication yes

4、修改完配置输入下方命令重启ssh服务

systemctl daemon-reload
systemctl restart sshd

5、建议启动之后输入下面命令设置密码

passwd root

你可能感兴趣的:(linux,kylin)