1、添加普通用户
[root@server ~]# useradd dupeng //添加一个名为dupeng的用户
[root@server ~]# passwd dupeng //修改dupeng用户的密码
2、赋予root权限
方法1):修改/etc/sudoers文件,找到下面一行,把前面的注释(#)去掉
## Allows people in group wheel to run all commands
# %wheel ALL=(ALL) ALL
修改为:
#Allows people in group wheel to run all commands
%whe...