ubuntu输入su命令显示 Authentication failure解决

由于ubuntu系统默认是没有激活root用户的,需要手动激活:

终端下输入:

sudo passwd

Password:你当前的密码

Enter new UNIX password:这个是root的密码
Retype new UNIX password:重复root的密码

即可成功。

注:使用su和sudo是有区别的,使用su切换用户需要输入所切换到的用户的密码,而使用sudo则是当前用户的密码。

时间: 2025-01-05 23:26:20

ubuntu输入su命令显示 Authentication failure解决的相关文章

FreeBSD安装后使用su命令显示sorry的解决办法

FreeBSD中,可以使用su命令成为root用户,但FreeBSD对执行su命令的用户进行了更严格的限制,能使用su命令的用户必须属于wheel组(root的基本属组,组ID为0),否则就不能通过 这个命令成为root.(当然该用户还得知道root口令)因此需要编辑组设置文件/etc/group,将需要超级用户权力的管理成员加入到wheel组中.三个方法: 1.         pw groupmod wheel -m <username> 2.         pw user mod &l

Ubuntu输入su提示认证失败的解决方法

启动Apache服务时竟然提示权限不够,用su切换,输入密码提示认证失败,这下搞了吧,后来一经查阅原来Ubuntu安装后,root用户默认是被锁定了的,不允许登录,也不允许 su 到 root ,对于桌面用户来说这个可能是为了增强安全性,但是服务器版上的没这个还真不行,赶紧设置下吧. 终端下 [email protected]:~$ sudo passwd Password: <--- 输入安装时那个用户的密码 Enter new UNIX password: <--- 新的Root用户密码

Ubuntu输入su提示认证失败的解决办法

Ubuntu安装完成后,root用户默认是被锁定了的,不允许登录,也不允许su到root,解决办法如下:

Ubuntu linux系统下su:出现: authentication failure的解决办法

一些问题解决的办法并不是很麻烦,但如果找不到办法,就会一直拖着那里浪费时间,所以如果刚好能有一篇文章解决此问题,就可以节约大家很多时间. 在新装的ubuntu 系统下面, 我是14.0.4 不知道其它系统会不会是同样问题. 输入su命令获取root权限时, 出现了authentication failure 的问题,即身份验证失败.需要进行下面操作: sudo passwd root Enter new UNIX password: //此时输入你的密码 Retype new UNIX pass

su: authentication failure 解决方法

在Linux上切换root时,密码正确..但提示:su: authentication failure ->sudo passwd ->Password:你当前的密码 ->Enter new UNIX password:这个是root的密码 ->Retype new UNIX password:重复root的密码 然后会提示成功的信息.  使用su和sudo是有区别的,使用su切换用户需要输入所切换到的用户的密码,而使用sudo则是当前用户的密码. 原文地址:https://www

使用su - root出现Authentication failure

使用su - root出现 Password: su: Authentication failure 原因:ubtun系统默认是没有激活root用户的 解决方法: 输入命令:sudo passwd root 显示 Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully 注意: (Enter new UNIX password: )不能和(Password: )输入的相同,如果

ubuntu 突然不能 sudo成功,报错su: Authentication failure

通过查看日志: /var/log/auth.log 报错: su[9959]: PAM unable to dlopen(pam_rootok.so): /lib/security/pam_rootok.so: cannot open shared object file: No such file or directory su[9959]: PAM adding faulty module: pam_rootok.so su[9959]: PAM unable to dlopen(pam_u

Mac下su命令提示su Sorry的解决办法

很多人在mac下,用su登录root用户,输入密码,都会提示su:Sorry,然后还怀疑自己记错了密码,其实不然. 其实正确的方式为: sudo su 然后输入密码就可以了 用户名显示不是root,而是sh-3.2,具有root权限. 如果你希望进入root权限,需要输入: sudo su - 总结: mac上,一开始创建的具有管理员权限的用户,但是那个用户密码,不是进入root的密码 当运行su - 这个命令时,会提示输入密码,而输入自己用户密码后报su :sorry 其实,需要使用sudo

Ubuntu su命令 Authentication failure的解决办法

重新设置root的密码: $ sudo passwd root Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully 设置成功后在进行su命令切花到root用户下,认证密码即为上面设置的密码 原文地址:https://www.cnblogs.com/kingsonfu/p/10625003.html