首页 > 代码库 > Linux新建用户并添加到sudo组

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组