sudo:3 次错误密码尝试

sudo:3 次错误密码尝试

有人能建议我如何避免这种情况吗?它从不要求输入密码,但仍然抱怨密码错误。

sudo su -
Sorry, try again.
Sorry, try again.
sudo: 3 incorrect password attempts

sudoers 文件条目:

# Allow members of group sudo to execute any command
%sudo   ALL=(ALL:ALL) ALL
%domain\\my_engineering ALL=(ALL:ALL) ALL

谢谢。

答案1

为了让 sudo 不要求输入密码,您可以ALL=(ALL) NOPASSWD: ALL在配置文件中将密码附加到您选择的用户或组。

我建议你看看man sudoers或类似教程

不过,我更喜欢先看手册页。

顺便说一句,为了获得rootshell,您还可以运行sudo -s -H。同样,手册页可以提供帮助。

相关内容