CentOS为用户增加root权限

1.修改 /etc/sudoers 

vi /etc/sudoers 

在下边增加一行内容

root    ALL=(ALL)     ALL
username   ALL=(ALL)     ALL

2.去掉注释

%wheel    ALL=(ALL)    ALL

保存退出

usermod -g root username

3.修改 /etc/passwd 文件

vi /etc/passwd

username:x:500:0:username:/home/username:/bin/bash

改为

username:x:0:0:username:/home/username:/bin/bash

重启系统

reboot

原文地址:https://www.cnblogs.com/jonban/p/9214716.html