LINUX学习

设置root登录

Ubuntu想要用root帐户登录,可在普通帐户权限下打开终端,输入

 

[plain] view plain copy
 
  1. cd /usr/share/lightdm/lightdm.conf.d  

在打开的文档后加

 

 

[plain] view plain copy
 
  1. greeter-show-manual-login=true  

 

保存


如果还没给root帐户设置密码的在终端输入

 

[plain] view plain copy
 
  1. sudo passwd root  

输入密码,详细看

 

http://blog.csdn.net/wu_wxc/article/details/48861891

设置好后重启,

终端输入

 

[plain] view plain copy
 
  1. reboot  

等启动后点击登录 >> 输入root >> 输入密码 >> 登录

 


登录后打开终端

可以看到是

root@wu:~#

root超级管理员帐户登录的

 

 

二、错误出现

登录后如果出现

Error found when loading /root/.profile:

stdin:is not a tty

As result the session will not be configured correctly.

You should fix the problem as soon as feasible.

解决方法

终端输入

 

[plain] view plain copy
 
  1. gedit /root/.profile  

在打开的文档找到

[plain] view plain copy
 
  1. mesg n  

把它改为

[plain] view plain copy
 
  1. tty -s && mesg n  

 

我是把它注释掉,重写一行的

当然,这一步可以在前面设置管理员root登录时完成,用root权限sudo执行就行

保存,重启系统

OK

 

posted @ 2016-10-25 18:44  jackieron  阅读(161)  评论(0编辑  收藏  举报