Предоставление доступа к sudo без запроса пароля

Я добавил имя пользователя в файл sudoer, но, как вы можете видеть ниже, когда я запускаю ] sudo ls Мне нужно ввести пароль. Как я могу это исправить, чтобы запускать команды sudo без пароля для пользователя test .

test@ubuntu:~$ sudo ls
[sudo] password for test:
test@ubuntu:~$ sudo cat /etc/sudoers
#
# 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        mail_badpass
Defaults        secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root    ALL=(ALL:ALL) ALL
test    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

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

#includedir /etc/sudoers.d
test@ubuntu:~$

ОБНОВЛЕНИЕ:

После установки NOPASSWD: мне все равно нужно ввести пароль. См. Ниже:

test@ubuntu:~$ sudo ls
[sudo] password for test:
test@ubuntu:~$ sudo cat /etc/sudoers
#
# 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        mail_badpass
Defaults        secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"

# Host alias specification

# User alias specification

# Cmnd alias specification

# User privilege specification
root    ALL=(ALL:ALL) ALL
test    ALL=(ALL:ALL) NOPASSWD: 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

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

#includedir /etc/sudoers.d
test@ubuntu:~$
0
задан 8 August 2021 в 12:16

1 ответ

Вы можете использовать test ALL = (ALL) NOPASSWD: ALL для предоставления пользователю test доступа без пароля

Обратите внимание, что если test пользователь находится в Группа admin или sudo , ее настройки будут переопределены в настройках групп. Чтобы избежать этого, запишите свои пользовательские настройки после настроек группы:

%admin ALL=(ALL) ALL
%sudo   ALL=(ALL:ALL) ALL
...
test    ALL=(ALL:ALL) NOPASSWD: ALL
1
ответ дан 20 August 2021 в 10:28

Другие вопросы по тегам:

Похожие вопросы: