su 使用自己的密码而不是 root 密码?

su 使用自己的密码而不是 root 密码?

我正在编辑使用visudo并查看以下行:

## Allows people in group wheel to run all commands
%wheel  ALL=(ALL)       ALL

当我将用户添加到wheel组时,他们可以这样做su,但是必须输入 root 密码才能执行此操作。

我记得以前有一次我访问一台机器时,su需要输入自己的密码而不是 root 密码。我该如何设置visudo才能做到这一点?

答案1

您正在寻找的可能是

sudo -i

susudoers与(visudo)文件无关。

答案2

如果你跑步sudo su你就能做到这一点。

答案3

使用 visudo 命令编辑 /etc/sudoers 时,请确保未在其中设置此项

root密码

If set, sudo will prompt for the root password instead of the

调用用户的密码。此标志默认为关闭。

从: http://www.gratisoft.us/sudo/sudoers.man.html

相关内容