我昨天升级到11.10。
我的 Nautilus 在加载时开始崩溃,看起来像是远程终端插件的一个已知错误升级后,nautilus 因分段错误而退出。
所以我决定卸载它,但这却是我的噩梦的开始——我的 root 密码被更改了。
是的,我输入了正确的密码,但验证失败!
我不知道该怎么办,我无法以 root 身份进行身份验证,这意味着我无法安装/卸载软件包。
umpirsky@umpirsky:~$ su
Password:
su: Authentication failure
有什么想法吗?请帮忙。
更新:我删除了默认密钥环,但问题仍然存在。
rm ~/.gnome2/keyrings/default.keyring
答案1
默认情况下,root 帐户是禁用的。执行超级用户操作的更安全方法是使用命令sudo
后跟您的命令。例如:sudo apt-get install clementine
。
但如果你确实想暂时借用超级用户帐户,请使用sudo su
。你可以在那里使用命令设置 root 帐户密码passwd
。例如:
##Enter your account's password here##
nits@nits-workstation:~$ sudo su
[sudo] password for nits:
root@nits-workstation:/home/nits# passwd
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
root@nits-workstation:/home/nits# exit
exit
##once the password is set, log-in to the root account with the password you just set##
nits@nits-workstation:~$ su
Password:
root@nits-workstation:/home/nits#