## 添加用户并提权root
[TOC]
>[info] #### 添加普通用户
~~~
#useradd myroot #直接添加
#useradd myroot -g root -G root #将分配到root组
~~~
~~~
代码:
-c comment 指定一段注释性描述。
-d 目录 指定用户主目录,如果此目录不存在,则同时使用-m选项,可以创建主目录。
-g 用户组 指定用户所属的用户组。
-G 用户组,用户组 指定用户所属的附加组。
-s Shell文件 指定用户的登录Shell。
-u 用户号 指定用户的用户号,如果同时有-o选项,则可以重复使用其他用户的标识号。
~~~
>[info] #### 设置密码
~~~
#passwd myroot #输入两次相同的密码即可
~~~
>[info] #### 修改用户
~~~
#usermod -g root myroot #修改用户的组
~~~
>[info] #### 方法一: 提权root
~~~
#vim /etc/sudoers
修改:
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
tommy ALL=(ALL) ALL
~~~
>[info] #### 方法二:提权root
* 修改 /etc/passwd 文件
~~~
tommy:x:500:500:tommy:/home/tommy:/bin/bash
修改后如下
tommy:x:0:500:tommy:/home/tommy:/bin/bash
~~~