如何将自己添加到 sudoers 列表?

如何将自己添加到 sudoers 列表?

我尝试使用以下命令安装一个包:

sudo apt-get install ruby-rvm

但我被提示

nish is not in the sudoers file.  This incident will be reported.

我尝试将自己添加到 /etc/sudoers 中的 sudoers 列表中。但要做到这一点,我需要以 root 用户身份登录。

再次使用命令“sudo su”提示“nish 不在 sudoers 文件中。此事件将被报告。”请有人在这里帮我解决。谢谢

答案1

实际上这是预期的行为。如果你不在 sudoers 列表中,则你无法将自己添加到其中,因为在多用户系统中,受限用户无法获得完全访问权限。如果你有 root 密码,你可以这样做

su root

将用户切换为 root,然后将自己添加到 sudoers 列表中。

相关内容