ly2002 is not in the sudoers file. This incident will be reported.
时间: 2023-12-06 18:37:07 浏览: 78
ansible-sudoers:在类似Debian的系统中管理sudoers和sudoers.d的角色
当出现“xxx is not in the sudoers file. This incident will be reported.”的提示时,说明当前用户没有sudo权限,无法执行需要sudo权限的操作。要解决这个问题,需要将当前用户添加到sudoers文件中。
以下是添加用户到sudoers文件的步骤:
1. 以root用户身份登录系统。
2. 执行命令visudo打开sudoers文件。
```shell
visudo
```
3. 在文件中找到“User privilege specification”部分。
4. 在该部分添加以下内容,其中ly2002为需要添加的用户名。
```shell
ly2002 ALL=(ALL) ALL
```
5. 保存并退出文件。
现在,ly2002用户就可以使用sudo命令执行需要sudo权限的操作了。
阅读全文