5
rated 0 times
[
5]
[
0]
/ answers: 1 / hits: 2569
/ 1 Year ago, fri, may 6, 2022, 5:29:03
I have the following sudoers file:
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
I want to run /sbin/pm-suspend without entering my password. I'm following this example: How do I run specific sudo commands without a password?
However, when I try to suspend, I still get the password prompt:
misha@misha-K42Jr:~$ sudo /sbin/pm-suspend
[sudo] password for misha:
What am I doing wrong?
More From » sudo