ubuntu12.04默认是不允许root登录的,在登录窗口只能看到普通用户和访客登录。以普通身份登陆Ubuntu后我们需要做一些修改,普通用户登录后,修改系统配置文件需要切换到超级用户模式,在终端窗口里面输入:sudo -s.然后输 入普通用户登陆的密码,回车即可进入 root用户权限模式.
网上查的方法:然后执行: vi /etc/lightdm/lightdm.conf.
增加 greeter-show-manual-login=true allow-guest=false .修改完的整个配置文件是
[SeatDefaults]
greeter-session=unity-greeter
user-session=ubuntu
greeter-show-manual-login=true #手工输入登陆系统的用户名和密码
allow-guest=false #不允许guest登录
问题:以上方法没有解决问题,重启后仍然不能输入用户,可能是因为swap中存在lightdm.conf的原因
解决方案:命令su,用root用户修改以下文件
nano /etc/lightdm/users.conf
minimum-uid=0
nano /etc/lightdm/lightdm.conf
greeter-hide-users=true
修改好后重启电脑,登陆时输root用户