centos6 新增用户 将用户权限改成root一样的权限

1.创建用户和设置密码

[root@linux200 ~]# useradd abc
[root@linux200 ~]# passwd abc
更改用户 abc 的密码 。
新的 密码:
无效的密码: 过于简单化/系统化
无效的密码: 过于简单
重新输入新的 密码:
passwd: 所有的身份验证令牌已经成功更新

2.验证用户是否创建成功

[root@linux200 ~]# id abc
uid=500(abc) gid=500(abc) 组=500(abc)

3.给新建用户权限改成root用户一样的权限

[root@linux200 ~]# vim /etc/sudoers

打开文件后,显示行号:set nu
找到第91行91 shift+g,按root用户的方式增加新增用户权限

 90 ## Allow root to run any commands anywhere
 91 root    ALL=(ALL)       ALL
 92 abc    ALL=(ALL)       ALL

你可能感兴趣的:(centos6 新增用户 将用户权限改成root一样的权限)