美文网首页
Ubuntu中root登录

Ubuntu中root登录

作者: lesline | 来源:发表于2018-04-07 00:39 被阅读17次

    Ubuntu中root登录

    首先设置root密码

    sudo passwd root

    ubuntu17之前

    Ubuntu用超级管理员root帐户登录 - CSDN博客
    Ubuntu 14.04 root用户自动登录 - CSDN博客

    1、修改登录设置

    vi /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
    [SeatDefaults]
    autologin-user=root
    user-session=ubuntu
    greeter-show-manual-login=true

    2、修改/root/.profile

    将文件末尾的 “mesg n”,修改为 “tty -s && mesg n”。
    tty -s && mesg n

    注意:如果这里不修改,登录会提示如下信息:
    Error found when loading /root/.profile
    stdin:is not a tty

    ubuntu17之后

    教你如何开启 Ubuntu 17.10 的Root登录_百度经验

    1、修改文件权限

    进入/etc/pam.d/目录
    在目录内修改两个文件
    gdm-autologin
    gdm-password
    首先将两个文件的权限改成 777
    sudo chmod 777 gdm-autologin
    sudo chmod 777 gdm-password

    2、修改上面的两个文件使用 # 注释里面的

    auth required pam_succeed_if.so user != root quiet_success

    相关文章

      网友评论

          本文标题:Ubuntu中root登录

          本文链接:https://www.haomeiwen.com/subject/cpsehftx.html