Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以,假设我在我的系统中添加了一个新用户,我们称之为用户。我希望用户有权更改我系统上任何其他文件的权限(如 chmod、chown 等),而无需任何密码。我应该在 /etc/sudoers 中写什么?还有我应该为以下权利写些什么:
只需将用户添加到 sudo 组:
sudo adduser <username> sudo
仅在登录时评估组成员身份,因此如果用户已经登录,他们必须先注销并重新登录,然后才能使用他们的新权限。
这是有效的,因为 /etc/sudoers 已预先配置为向该组的所有成员授予权限(您不必对此进行任何更改):
# Allow members of group sudo to execute any command %sudo ALL=(ALL:ALL) ALL