Ubuntu16.04中启用root用户,以及root用户自动登录

  http://www.m5home.com/blog/archives/2016/12/103.html


第一步是给root用户设置个密码.

     我没试过空密码行不行,不折腾.

sudo passwd root


第二步是在配置文件里设置自启动:
     1,编辑/etc/lightdm/lightdm.conf:
sudo gedit  /etc/lightdm/lightdm.conf

[Seat:*]
autologin-guest=false
autologin-user=root
autologin-user-timeout=0
greeter-session=lightdm-gtk-greeter

     2,编辑/root/.profile文件,增加tty -s &&:
sudo gedit /root/.profile 

# ~/.profile: executed by Bourne-compatible login shells.

if [ "$BASH" ]; then
  if [ -f ~/.bashrc ]; then
    . ~/.bashrc
  fi
fi

tty -s && mesg n || true


然后重启就行了.




关闭guest用户

$ sudo vi /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
  • 1
  • 1

在最后增加allow-guest=false
保存退出。注销后可看到已经没有guest用户登陆的选项。


你可能感兴趣的:(Linux)