问题描述
在/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”选择正确的下拉菜单
第四种方法
如果您将Unity用作桌面环境,它非常简单。
如果您已经创建了一个用户,那么您可以简单地将其从标准更改为管理员,否则请确保在创建新用户时选择了管理员。
在尝试更改它之前,不要忘记解锁
第五种方法
sudo gpasswd -a $USER sudo