码迷,mamicode.com
首页 > 其他好文 > 详细

xxx is not in the sudoers file.This incident will be reported. 解决方法

时间:2020-04-01 14:55:55      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:密码   需要   添加   user   nbsp   etc   nop   file   roo   

1. 切换到 root 用户

2. 添加 sudo 文件的写权限

  执行命令:chmod u+w /etc/sudoers

3. 编辑 sudoers 文件

执行命令:vi /etc/sudoers

找到这行 root ALL=(ALL) ALL

在这行下面添加 xxx ALL=(ALL) ALL (xxx 是你的用户名)

注:可以添加下面四行中任意一行:
youuser            ALL=(ALL)                ALL
%youuser           ALL=(ALL)                ALL
youuser            ALL=(ALL)                NOPASSWD: ALL
%youuser           ALL=(ALL)                NOPASSWD: ALL


第一行:允许用户 youuser 执行 sudo 命令(需要输入密码)。
第二行:允许用户组 youuser 里面的用户执行 sudo 命令(需要输入密码)。
第三行:允许用户 youuser 执行 sudo 命令(不需要输入密码)。
第四行:允许用户组 youuser 里面的用户执行 sudo 命令(不需要输入密码)。


4. 撤销 sudoers 文件写权限

  执行命令:chmod u-w /etc/sudoers

  

 

xxx is not in the sudoers file.This incident will be reported. 解决方法

标签:密码   需要   添加   user   nbsp   etc   nop   file   roo   

原文地址:https://www.cnblogs.com/dhqy/p/12612214.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!