linux下添加用户并赋予root权限
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下添加用户并赋予root权限相关的知识,希望对你有一定的参考价值。
1、添加用户,首先用adduser命令添加一个普通/系统用户,命令如下:
# adduser [-r] –d /tommy tommy
//添加一个名为tommy的用户
# passwd tommy //修改密码
Changing password for user tommy.
New UNIX password: //在这里输入新密码
Retype new UNIX password: //再次输入新密码
passwd: all authentication tokens updated successfully.
2、赋予root权限(推荐此法)
修改 /etc/sudoers 文件,找到下面一行,在root下面添加一行,如下所示:
## Allow root to run any commands anywhere
root ALL=(ALL) ALL
tommy ALL=(ALL) NOPASSWD:ALL
修改完毕,现在可以用tommy帐号登录,然后用命令sudo -i,即可获得root权限进行操作。
本文出自 “change” 博客,请务必保留此出处http://changeflyhigh.blog.51cto.com/8317626/1953691
以上是关于linux下添加用户并赋予root权限的主要内容,如果未能解决你的问题,请参考以下文章