您的当前位置:首页正文

Ubuntu中创建用户

2020-03-21 来源:小奈知识网
Ubuntu中创建用户

Ubuntu中创建用户

概要:Ubuntu中用户的创建可使用useradd和adduser两种方式 useradd命令选项如下:

Usage: useradd [options] LOGIN useradd -D

useradd -D [options] Options:

-b, --base-dir BASE_DIR base directory for the home directory of the

new account

-c, --comment COMMENT GECOS field of the new account -d, --home-dir HOME_DIR home directory of the new account

-D, --defaults print or change default useradd configuration -e, --expiredate EXPIRE_DATE expiration date of the new account

-f, --inactive INACTIVE password inactivity period of the new account

-g, --gid GROUP name or ID of the primary group of the new account

-G, --groups GROUPS list of supplementary groups of the new

account

-h, --help display this help message and exit

-k, --skel SKEL_DIR use this alternative skeleton directory -K, --key KEY=VALUE override /etc/login.defs defaults -l, --no-log-init do not add the user to the lastlog and faillog databases

-m, --create-home create the user's home directory

-M, --no-create-home do not create the user's home directory

-N, --no-user-group do not create a group with the same name as

the user

-o, --non-unique allow to create users with duplicate (non-unique) UID

-p, --password PASSWORD encrypted password of the new account

-r, --system create a system account

-R, --root CHROOT_DIR directory to chroot into -s, --shell SHELL login shell of the new account -u, --uid UID user ID of the new account

-U, --user-group create a group with the same name as the user

-Z, --selinux-user SEUSER use a specific SEUSER for the SELinux user mapping

adduser选项如下:

adduser [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID]

[--firstuid ID] [--lastuid ID] [--gecos GECOS] [--ingroup GROUP | --gid ID]

[--disabled-password] [--disabled-login] [--encrypt-home] USER

Add a normal user

adduser --system [--home DIR] [--shell SHELL] [--no-create-home] [--uid ID]

[--gecos GECOS] [--group | --ingroup GROUP | --gid ID] [--disabled-password]

[--disabled-login] USER Add a system user

adduser --group [--gid ID] GROUP addgroup [--gid ID] GROUP Add a user group

addgroup --system [--gid ID] GROUP Add a system group adduser USER GROUP

Add an existing user to an existing group general options:

--quiet | -q don't give process information to stdout --force-badname allow usernames which do not match the NAME_REGEX[_SYSTEM] configuration variable --help | -h usage message

--version | -v version number and copyright --conf | -c FILE use FILE as configuration file

在Ubuntu中创建新用户,通常会用到两个命令:useradd和adduser。虽然作用一样,但用法却不尽相同:

1. 使用useradd时,如果后面不添加任何参数选项,例如:#sudo useradd test创建出来的用户将是默认“三无”用户:一无Home Directory,二无密码,三无系统Shell。

解决方法:

sudo useradd -m -s /bin/bash apple -m:创建用户主文件夹 -s:新用户的默认shell

新建用户的命令是useradd,修改密码是passwd,如下: sudo useradd linc sudo passwd linc

但是问题出现了,home目录下并没有相对应的linc目录。 原来ubuntu并没有为我们做那么多,先来看看useradd的选项: 1. 选项:

2. -b, --base-dir BASE_DIR 新账户的主目录的基目录 3. -c, --comment COMMENT 新账户的 GECOS 字段 4. -d, --home-dir HOME_DIR 新账户的主目录 5. -D, --defaults 显示或更改默认的 useradd 配置 6. -e, --expiredate EXPIRE_DATE 新账户的过期日期 7. -f, --inactive INACTIVE 新账户的密码不活动期 8. -g, --gid GROUP 新账户主组的名称或 ID 9. -G, --groups GROUPS 新账户的附加组列表 10. -h, --help 显示此帮助信息并推出

11. -k, --skel SKEL_DIR 使用此目录作为骨架目录

12. -K, --key KEY=VALUE 不使用 /etc/login.defs 中的默认值 13. -l, --no-log-init 不要将此用户添加到最近登录和登录失败数据库

14. -m, --create-home 创建用户的主目录 15. -M, --no-create-home 不创建用户的主目录 16. -N, --no-user-group 不创建同名的组

17. -o, --non-unique 允许使用重复的 UID 创建用户 18. -p, --password PASSWORD 加密后的新账户密码 19. -r, --system 创建一个系统账户 20. -s, --shell SHELL 新账户的登录 shell 21. -u, --uid UID 新账户的用户 ID 22. -U, --user-group 创建与用户同名的组

23. -Z, --selinux-user SEUSER 为 SELinux 用户映射使用指定 SEUSER

我们需要自己来建一个用户的主目录和shell,如下: userdel -r linc

useradd linc -m -s /bin/bash

再此设置好密码后,就可以切换用户了,su linc。 用exit也可以退出这个用户到默认用户。 时间:2015/10/10

因篇幅问题不能全部显示,请点此查看更多更全内容