把Ubuntu安装在虚拟机里,每次启动都要输入账号密码,为了省事,让root自动登陆,如下:
1. 为 root 账户修改一个密码;
在终端下输入 ” sudo passwd root ” 命令,终端会提示输 入当前账户密码,正确输入后,再输入两次你想要为 root 账户赋予的密码即可。
2. 设置 root 账户自动登录;
(1 ) 查看 /etc/gdm/ 目录下是否存在 custom.conf 文件,如果存在,则直接跳到下一步,
(2)如果不存在,则依次打开” System-> à Administration à-> Login Screen ”(系统->系统管理->登陆窗口),点击“ Unlock ”后,修改 Login Screen Settings 的某一项设置,比如 Enable 或者 Disable 一下“ Log in as automatically ”,然后关闭该窗口,再查看一下 /etc/gdm/ 目录下, custom.conf 文件应该就会存在了。
3. 编辑 /etc/gdm/custom.conf 文件,修改其中的 AutomaticLoginEnable , AutomaticLogin , TimedLogin 三项,具体如下所示:
[daemon]
AutomaticLoginEnable=true 这个修改为 true
AutomaticLogin=root 这个修改为 root
TimedLoginEnable=false
TimedLogin=root 这个修改为 root
TimedLoginDelay=10
DefaultSession=gnome
Fedora 以root登录:
1 vi /etc/pam.d/gdm
把 auth required …… root quiet 这行注释掉
2 vi /etc/pam.d/gdm-passwd
同上
3 vi /etc/gdm/custom.conf
在末尾增加以下:
[daemon]
AutomaticLoginEnable=true
AutomaticLogin=root