sudoers.d 中的 README 文件是什么类型的文件?

sudoers.d 中的 README 文件是什么类型的文件?

只是好奇……我觉得这是一个可以用我所有的管理权限读取的好文件,而不是……哈哈。无法打开,因为 Ubuntu 无法识别文件类型。

别担心,我不会改变它,我保证

答案1

“无法打开”?您打算如何打开它?以下是我在系统上使用的一些命令:

w3@aardvark:~(0)$ ls -l /etc/sudoers.d
total 8
-r--r----- 1 root root 1626 Dec 28  2013 IPCop
-r--r----- 1 root root  958 Feb 10  2014 README
w3@aardvark:~(0)$ sudo file /etc/sudoers.d/README
[sudo] password for w3: 
/etc/sudoers.d/README: ASCII text
w3@aardvark:~(0)$ 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.
#
w3@aardvark:~(0)$ sudo mimetype /etc/sudoers.d/README
/etc/sudoers.d/README: text/x-readme

答案2

这是一个简单的纯文本文件。你可以运行以下命令来阅读它:

sudo less /etc/sudoers.d/README

这个文件对于系统的功能来说并不是那么重要,所以如果你编辑它,也没有什么大不了的。

相关内容