centos6.5增加用户,使其具有root权限
Posted ddpeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos6.5增加用户,使其具有root权限相关的知识,希望对你有一定的参考价值。
1.创建用户
-bash-4.1# useradd fdp #创建用户
-bash-4.1# passwd fdp #给指定用户增加密码
Changing password for user fdp.
New password: #录入密码,比如fdp123456
BAD PASSWORD: it is WAY too short
BAD PASSWORD: is too simple
Retype new password: #确认密码,fdp123456,与上面的密码一致
passwd: all authentication tokens updated successfully.
2.赋予文件修改权限
-bash-4.1# chmod u+w /etc/sudoers
-bash-4.1# ll /etc/sudoers
-rw-r-----. 1 root root 4002 Mar 2 2012 /etc/sudoers
3.追加用户信息 #大概在/etc/sudoers配置文件的98行的位置
-bash-4.1# vi /etc/sudoers
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
fdp ALL=(ALL) ALL #追加的信息内容
%wheel ALL=(ALL) ALL #去掉前面默认注释的井号
4.修改属组关系
usermod -g root fdp
5.将用户ID修改为与0(因为root用户的ID也是0)
-bash-4.1# vi /etc/passwd
fdp:x:0:502::/home/fdp:/bin/bash #一般位于文件的最下方
6.关闭文件修改权限
-bash-4.1# chmod u-w /etc/sudoers
7.用新的户名和密码为fdp/fdp123456登录即可。
以上是关于centos6.5增加用户,使其具有root权限的主要内容,如果未能解决你的问题,请参考以下文章