当前账户sudo指令无法执行,提示linux用户不在sudoers文件中应该怎么办
1.切换到超级用户root
$su root
2.查看/etc/sudoers权限,可以看到当前权限为440
$ ls -all /etc/sudoers
3.更改权限为777
$chmod 777 /etc/sudoers
4.编辑/etc/sudoers
$vi /etc/sudoers
5.在root ALL=(ALL:ALL) ALL 下面添加一行
用户名 ALL=(ALL)ALL
6.把/etc/sudoers权限改回440
$chmod 440 /etc/sudoers