sudo su root 提示 root is not in the sudoers file. This incident will be reported. 如何解决
时间: 2023-07-23 21:30:53 浏览: 187
这个问题说明当前用户没有sudo权限,需要使用root用户或者具有sudo权限的用户来修改sudoers文件。具体操作如下:
1. 切换到root用户,命令为:`su - root`,输入root用户的密码。
2. 编辑sudoers文件,命令为:`visudo`,在文件末尾添加以下内容:
```
root ALL=(ALL:ALL) ALL
```
这个语句表示允许root用户执行任何命令。
3. 保存并退出文件,命令为:`Ctrl + X`,输入`Y`,然后按`Enter`键。
现在你可以使用sudo命令来执行需要root权限的命令了。
相关问题
is not in the sudoers file. This incident will be reported
这是一个关于 Linux 系统权限的问题,我可以回答。这个错误提示意味着当前用户没有被授权执行 sudo 命令,需要使用 root 用户或者具有 sudo 权限的用户来执行该命令。如果您是系统管理员,可以通过修改 /etc/sudoers 文件来添加用户的 sudo 权限。
is not in the sudoers file. This incident will be reported.
当出现"is not in the sudoers file. This incident will be reported."错误时,表示当前用户没有sudo权限,无法执行需要管理员权限的操作。解决方法如下:
1. 切换到能使用root权限的用户,使用root权限修改sudoers文件:
```shell
sudo vim /etc/sudoers
```
2. 在sudoers文件中,找到"root ALL=(ALL) ALL"行下方,添加以下内容:
```shell
<username> ALL=(ALL) ALL
```
其中,<username>为你的用户名。
3. 编辑完成后,按下"Esc"键,输入":wq"保存并退出。
4. 最后,恢复sudoers文件的权限:
```shell
sudo chmod u-w /etc/sudoers
```
请注意,修改sudoers文件时需要谨慎操作,避免出现语法错误导致系统无法正常使用。
阅读全文