sudoers文件

发布时间 2023-06-29 08:54:35作者: liqinglucky

原文地址: https://www.cnblogs.com/liqinglucky/p/sudoers.html

Ubuntu系统中查看sudoers文件

$ vi /etc/sudoers

文件内容

# 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"

# 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

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