我看到的是/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
组?
答案1
sudo usermod -aG sudo <username>
非常a
重要。如果没有它,他们将被从所有其他组中删除。您需要重新启动 shell/终端或注销并重新登录才能使此设置生效。
也可以看看:
答案2
您可以使用用户管理 GUI(与您创建用户的位置相同),也可以sudo adduser <username> sudo
在命令行中使用。
答案3
您也可以使用图形界面。单击面板右上角的齿轮,然后选择“系统设置”,然后选择“用户帐户”
您需要点击小解锁按钮才能在此窗口中编辑内容。然后点击此人的帐户,并选择“帐户类型”的正确下拉菜单
答案4
sudo gpasswd -a $USER sudo