adduser
命令在大多数Linux发行版中都可以使用,包括Debian、Ubuntu、Alpine、Arch Linux、Kali Linux、RedHat/CentOS、Fedora、Raspbian等。如果在某些Linux发行版中adduser
命令不可用,可以通过安装adduser
程序来解决。在Ubuntu/Debian中,可以使用以下命令进行安装:
[linux@bashcommandnotfound.cn ~]$ sudo apt install adduser
在CentOS/RHEL中,可以使用以下命令进行安装:
[linux@bashcommandnotfound.cn ~]$ sudo yum install adduser
adduser
命令的一般语法格式如下:
sudo adduser [option] user
在这里,[option]
是可选的命令行选项,user
是要添加的用户名。
以下是adduser
命令的一些常用选项:
选项 | 说明 |
---|---|
–system | 添加系统用户或组 |
–disabled-login | 禁止登录到用户账户 |
–disabled-password | 禁止使用密码登录 |
–gid | 将组ID号设置为。如果指定了用户,则还将用户添加到组 |
–group | 运行addgroup命令并添加用户组。如果指定了–system,则添加系统用户和组 |
–home | 将用户的主目录设置为 |
–shell | 使用作为用户的登录shell |
–ingroup | 将用户添加到,而不是配置文件中的默认组 |
–no-create-home | 避免为用户创建主目录 |
以下是一些adduser
命令的使用实例:
使用此命令,您可以向系统添加新用户。添加新用户时,您将被要求输入一些信息。
[linux@bashcommandnotfound.cn ~]$ sudo adduser user
您可以使用--system
选项来添加系统用户。
[linux@bashcommandnotfound.cn ~]$ sudo adduser --system user
[linux@bashcommandnotfound.cn ~]$ sudo adduser --home /path/to/home user
您可以使用--disabled-login
选项来禁止新用户登录。
[linux@bashcommandnotfound.cn ~]$ sudo adduser --disabled-login user
您可以使用–uid选项来为新用户指定用户ID1。
[linux@bashcommandnotfound.cn ~]$ sudo adduser --uid 1001 user
您可以使用–gid选项来为新用户指定组ID1。
[linux@bashcommandnotfound.cn ~]$ sudo adduser --gid 1001 user
您可以使用–shell选项来为新用户指定登录shell1。
[linux@bashcommandnotfound.cn ~]$ sudo adduser --shell /bin/bash user
您可以使用–disabled-password选项来禁止新用户使用密码登录1。
[linux@bashcommandnotfound.cn ~]$ sudo adduser --disabled-password user
您可以使用–gecos选项来为新用户添加注释1。
[linux@bashcommandnotfound.cn ~]$ sudo adduser --gecos "This is a test user" user
您可以使用–ingroup选项来为新用户指定主组
[linux@bashcommandnotfound.cn ~]$ sudo adduser --ingroup groupname username
[linux@bashcommandnotfound.cn ~]$ sudo adduser --no-create-home username
adduser
命令时遇到bash: adduser: command not found
错误,可以按照上面的方法进行安装。