답변:
으로 이 질문은 말한다, /etc/sudoers
자동으로 시스템 업그레이드에 의해 변경 및 부적절한 변화에 매우 취약 할 수있는 시스템 전체의 구성 파일입니다. 부적절한 변경으로 인해 액세스가 손실되거나 시스템을 부팅 할 수 없게 될 수 있습니다.
$ 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.
#
(... some other content ...)
# See sudoers(5) for more information on "#include" directives:
#includedir /etc/sudoers.d
당신이 기대할 수있는 것과는 달리, #includedir
지시문 은 주석이 아닙니다 . 디렉토리에 sudo
있는 파일 /etc/sudoers.d
( '~'로 끝나거나 '.'문자를 포함하지 않는 파일)도 읽고 구문 분석 하는 효과가 있습니다.
$ ls -l /etc/sud*
-r--r----- 1 root root 755 sty 20 17:03 /etc/sudoers
/etc/sudoers.d:
total 7
-r--r----- 1 root root 958 mar 30 2016 README
$ sudo cat /etc/sudoers.d/README
#
# As of Debian version 1.7.2p1-1, the default /etc/sudoers file created on
# installation of the package now includes the directive:
#
# #includedir /etc/sudoers.d
#
# This will cause sudo to read and parse any files in the /etc/sudoers.d
# directory that do not end in '~' or contain a '.' character.
#
# Note that there must be at least one file in the sudoers.d directory (this
# one will do), and all files in this directory should be mode 0440.
#
# Note also, that because sudoers contents can vary widely, no attempt is
# made to add this directive to existing sudoers files on upgrade. Feel free
# to add the above directive to the end of your /etc/sudoers file to enable
# this functionality for existing installations if you wish!
#
# Finally, please note that using the visudo command is the recommended way
# to update sudoers content, since it protects against many failure modes.
# See the man page for visudo for more information.
#
이와 달리 시스템 업그레이드 /etc/sudoers
의 내용은 /etc/sudoers.d
시스템 업그레이드 후에도 유지되므로 수정하는 것보다 파일을 만드는 것이 좋습니다 /etc/sudoers
.
다음 visudo
명령 을 사용하여이 디렉토리의 파일을 편집 할 수 있습니다 .
$ sudo visudo -f /etc/sudoers.d/veracrypt
GNU nano 2.5.3 File: /etc/sudoers.d/veracrypt.tmp
# Users in the veracryptusers group are allowed to run veracrypt as root.
%veracryptusers ALL=(root) NOPASSWD:/usr/bin/veracrypt
그주의 visudo
다른 편집기를 사용하여 대신의 수 nano
에 설명 된대로 https://help.ubuntu.com/community/Sudoers
내가 찾은 몇 가지 링크는 다음과 같습니다.
/etc/sudoers.d
로 sudo가 중단되지 않는 것은 사실이 아닙니다 . 해당 파일은에 연결되어/etc/sudoers
있습니다. 해당 파일에 동일한 규칙이 적용됩니다.