如图,在终端执行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
文章来源地址https://www.toymoban.com/news/detail-786218.html
注意这个文件是只读的
因此需要使用:wq!强制保存
然后重新执行命令就OK了
文章来源:https://www.toymoban.com/news/detail-786218.html
到了这里,关于Linux下is not in the sudoers file解决方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!