linux给用户添加sudo权限

在linux进行sudo操作时,有时会提示:

xxxx is not in the sudoers file.  This incident will be reported.

xxxx是当前操作的用户。
这就是说,当前的用户没有sudo权限,估计是创建用户的时候忘记给加sudo权限了,添加的方法如下:
1 切回到root用户,查看/etc/sudoers的权限,如果只读,给一个写的权限

chmod +w /etc/sudoers

2 添加自己用户的sudo权限:在/etc/sudoers找到

root    ALL=(ALL:ALL) ALL

在下面添加自己的用户:

xxxx    ALL=(ALL:ALL) ALL

xxxx是自己的用户名。
3 保存,退出,切回自己的普通用户,这个时候应该有sudo权限了

你可能感兴趣的:(shell)