当前位置: 首页>>技术教程>>正文


如何将用户添加到“sudo”组?

, ,

问题描述

/etc/sudoers中我看到这个:

# Allow members of group sudo to execute any command after they have
# provided their password
# (Note that later entries override this, so you might need to move
# it further down)
%sudo ALL=(ALL) ALL

那么如何将用户添加到该sudo组?

最佳解决方法

sudo usermod -aG sudo <username>

a非常重要。没有它,它们会从其他所有组中移除。您将需要重新启动您的 shell /终端或注销并重新登录才能生效。

也可以看看:

次佳解决方法

您可以使用用户管理GUI(创建用户的地方),也可以在命令行中使用sudo adduser <username> sudo

第三种解决方法

您也可以使用图形界面。点击面板右上角的齿轮,然后选择”System Settings”,然后选择”User Accounts”

您需要点击小解锁按钮才能在此窗口中编辑内容。然后点击该人的帐户,并为”Account Type”选择正确的下拉菜单

sudo,user-management,ubuntu

第四种方法

如果您将Unity用作桌面环境,它非常简单。

如果您已经创建了一个用户,那么您可以简单地将其从标准更改为管理员,否则请确保在创建新用户时选择了管理员。

在尝试更改它之前,不要忘记解锁

sudo,user-management,ubuntu

第五种方法

sudo gpasswd -a $USER sudo

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/287.html,未经允许,请勿转载。