node is not in the sudoers file. This incident will be reported.
时间: 2024-01-04 07:19:04 浏览: 89
linux系统使用sudo命令报xxx is not in the sudoers file.This incident will be reported.的解决方法.pdf
当出现"node is not in the sudoers file. This incident will be reported"错误时,可以按照以下步骤解决:
1. 打开终端并以root用户身份登录。
2. 编辑sudoers文件,可以使用以下命令打开sudoers文件:
```shell
visudo
```
3. 在sudoers文件中找到以下行:
```shell
root ALL=(ALL:ALL) ALL
```
4. 在该行下方添加以下内容,其中"node"是你要添加权限的用户名:
```shell
node ALL=(ALL:ALL) ALL
```
5. 保存并退出sudoers文件。
现在,"node"用户应该具有sudo权限,可以执行sudo命令而不再报错。
阅读全文