Answers:
最后我完成了自己
这就是答案
useradd -m -d /home/testuser/ -s /bin/bash -G sudo testuser
-m
如果主目录不存在,则创建它。-d
覆盖默认的主目录位置。-s
设置用户的登录shell。-G
需要用逗号分隔的用户组列表。
you check using man command.
这是一个零帮助的回复,在您记得有关该man
功能的人员之后,您可能已经解释了。
该useradd
程序已不推荐使用adduser
。来自man useradd
:
useradd是用于添加用户的低级实用程序。在Debian上,
管理员通常应改用adduser(8)。
adduser
是一个友好的前端useradd
,默认情况下会执行类似创建用户目录的操作。当仅使用用户名作为参数运行它时,系统将提示您提供其他信息,例如密码:
$ sudo adduser testuser
Adding user `testuser' ...
Adding new group `testuser' (1002) ...
Adding new user `testuser' (1002) with group `testuser' ...
Creating home directory `/home/testuser' ...
Copying files from `/etc/skel' ...
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Changing the user information for testuser
Enter the new value, or press ENTER for the default
Full Name []:
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Is the information correct? [Y/n]
通常,您应该始终使用adduser
而不是,useradd
因为这也会自动设置所需的组。如中所述man adduser
:
adduser and addgroup add users and groups to the system according to
command line options and configuration information in
/etc/adduser.conf. They are friendlier front ends to the low level
tools like useradd, groupadd and usermod programs, by default choosing
Debian policy conformant UID and GID values, creating a home directory
with skeletal configuration, running a custom script, and other fea‐
tures.
/etc/skel
等复制默认文件等。这就是为什么要使用Official DebianWay®的原因adduser
。
useradd -m LOGIN
创建用户的主目录
sudo
组中即可。