无法在 sudoers 中使用 :NOPASSWD

mpe*_*kov 2 sudo

我有以下 sudoers 文件:

misha@misha-K42Jr:~$ sudo cat /etc/sudoers
[sudo] password for misha: 
#
# This file MUST be edited with the 'visudo' command as root.
#
# Please consider adding local content in /etc/sudoers.d/ instead of
# directly modifying this file.
#
# See the man page for details on how to write a sudoers file.
#
Defaults        env_reset
Defaults        secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root    ALL=(ALL:ALL) ALL

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL

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

misha   ALL = (root) NOPASSWD: /sbin/pm-suspend

# See sudoers(5) for more information on "#include" directives:

#includedir /etc/sudoers.d
Run Code Online (Sandbox Code Playgroud)

我想在不输入密码的情况下运行 /sbin/pm-suspend 。我正在关注这个例子:如何在没有密码的情况下运行特定的 sudo 命令?

但是,当我尝试挂起时,我仍然收到密码提示:

misha@misha-K42Jr:~$ sudo /sbin/pm-suspend
[sudo] password for misha:
Run Code Online (Sandbox Code Playgroud)

我究竟做错了什么?

Ale*_*x R 5

pm-suspend 不在 /sbin/

misha   ALL = (root) NOPASSWD: /usr/sbin/pm-suspend
Run Code Online (Sandbox Code Playgroud)

可能会给你带来更好的运气。