安装完CentOS后,默认情况下无法使用sudo命令。会有如下报错:
-
XXX is not in the sudoers file. This incident will be reported.
为了让普通用户具有执行sudo 命令的权限,需要修改
/etc/sudoers 文件。
步骤如下:
-
1. #chmod u+w /etc/sudoers
-
-
2. #vim /etc/sudoers
-
在 root ALL=(ALL) ALL 下依葫芦画瓢添加一行
-
username ALL=(ALL) ALL (username 为需要添加权限的用户名)
-
-
3. #chmod u-w /etc/sudoers
阅读(1743) | 评论(0) | 转发(0) |