方法一:修改/etc/passwd

$adduser eric  # 新增用户eric
$passwd eric # 修改密码
$usermod -g root eric # 修改用户组
$vi /etc/passwd # 把用户ID修改为 0

添加root权限用户_linux

方法二:修改 /etc/sudoers

在/etc/sudoers文件里加一行:

eric  ALL=(ALL)

或修改下面一行:

## Allows people in group wheel to run all commands
%wheel ALL=(ALL)

参考

​http://www.kaotop.com/it/182472.html​