Linux下is not in the sudoers file解决方法

如图,在终端执行sudo命令时,系统提示

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

原因就是当前的用户没有加入到sudo的配置文件里

解决方法:

#切换到root用户
su
#编辑配置文件
vim /etc/sudoers
#找到root ALL=(ALL) ALL, 在下面添加一行, xxx是用户名称
xxx ALL=(ALL) ALL

Linux下is not in the sudoers file解决方法_第1张图片

 

注意这个文件是只读的

 

因此需要使用:wq!强制保存

然后重新执行命令就OK了

Linux下is not in the sudoers file解决方法_第2张图片

 

你可能感兴趣的:(Linux,linux,运维,服务器)