sudo命令无法执行(xxx is not in the sudoers file.)

在linux新建一个普通用户,使用sudo执行命令的时候却提示xxx is not in the sudoers file. This incident will be reported.大致的意思就是此用户没有sudo执行权限。

解决办法

#先切换到root用户
su -
#编辑配置文件
vi /etc/sudoers
#找到root ALL=(ALL) ALL这一行,并在下面添加一行
user            ALL=(ALL)                ALL
#保存退出
:wq!

注意user就是您需要添加的用户,保存后再次执行sudo试试。

此文参考了:xxx is not in the sudoers file.This incident will be reported.的解决方法

标签: linux学习 linux命令 sudo

精彩评论
  1. 不错,刚好碰到过这个问题

发表评论: