centos普通用户设置sudo权限

#visudo 命令是用来编辑修改/etc/sudoers配置文件

方法一
在 “root  ALL=(ALL)   ALL” 这一行下面,再加入一行:
username  ALL=(ALL)     ALL
其中,username为你当前使用的用户名,也就是普通用户的用户名

方法二
找到“%wheel ALL=(ALL) ALL”这一行,并把前面的注释去掉
然后修改用户,使其属于root组(wheel),命令如下:
#usermod -g root username 或者
#usermod -g wheel username

保存退出后,普通用户在命名前加 sudo 即可拥有root权限