Linux新建用户并添加到sudo组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux新建用户并添加到sudo组相关的知识,希望对你有一定的参考价值。

原文参考链接:https://www.douban.com/note/338488349/

以在kali 下添加一个test用户为例:

Step1#:添加新用户
useradd -r -m -s /bin/bash 用户名

useradd -r -m -s /bin/bash test

参数说明:

-r, --system                  create a system account
-m, --create-home             create the user‘s home directory
-s, --shell SHELL             login shell of the new account

Step2#:配置新用户密码
passwd 用户名

passwd test

会让你输入两次密码!

Step3#:给新添加的用户增加ROOT权限
vim /etc/sudoers
然后添加:
用户名 ALL=(ALL:ALL) ALL

test     ALL=(ALL:ALL) ALL

这样就可以用sudo 获取权限,或者用sudo -i 切换到root

以上是关于Linux新建用户并添加到sudo组的主要内容,如果未能解决你的问题,请参考以下文章

Centos7 普通用户加入sudo组

Linux Collection:用户管理

linux新建用户并赋予sudo权限

Linux 创建新用户并添加到sudo用户组

linux: 用户管理,文件传送

Ubuntu中为指定用户添加sudo权限