***** is not int the sudoers file

有时候我们执行sudo的时候,出现

***** is not int the sudoers file

告诉我们当前用户不是sudoer,所以我们要把当前用户添加进去,步骤如下:

1、修改/etc/sudoers文件,进入超级用户,因为没有写权限,所以要先把写权限加上   

$chmod u+w /etc/sudoers

2、编辑/etc/sudoers文件,找到这一 行:"rootALL=(ALL) ALL"

      在起下面添加"abc  ALL=(ALL) ALL"(这里的abc是你的用户名),然后保存。

3、最后恢复没有写权限模式,撤销文件的写权限,

$chmod u-w /etc/sudoers

然后我们就可以用zhc用户来编辑root的文件了

你可能感兴趣的:(Linux)