Linuxuseradd命令详解
1.作⽤
useradd或adduser命令⽤来建⽴⽤户帐号和创建⽤户的起始⽬录,使⽤权限是超级⽤户。
2.格式
useradd [-d home] [-s shell] [-c comment] [-m [-k template]] [-f inactive] [-e expire ] [-p passwd] [-r] name 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 翻译:新帐户的主⽬录的BASE_DIR基⽬录
-c, --comment COMMENT GECOS field of the new account
翻译:注释注释新帐户的GECOS字段
-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
翻译:gid组名称或新帐户的主要组的ID
-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
翻译:覆盖/etc/login.defs违约
-l, --no-log-init do not add the user to the lastlog and faillog databases
翻译:不将⽤户添加到lastlog和faillog数据库
-
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不安装jdk能使用eclipse吗
翻译:不创建与⽤户同名的组
-o, --non-unique allow to create users with duplicate (non-unique) UID
翻译:允许创建具有重复(⾮唯⼀)UID的⽤户
-p, --password PASSWORD encrypted password of the new account
翻译:新帐户的加密密码
-r, --system create a system account
翻译:创建系统帐户
-R, --root CHROOT_DIR directory to chroot into
翻译:要chroot到的⽬录
-P, --prefix PREFIX_DIR prefix directory where are located the /etc/* files
*翻译:位于/etc/⽂件的前缀⽬录
-s, --shell SHELL login shell of the new account
翻译:新帐户的登录外壳
-u, --uid UID user ID of the new account
翻译:新帐户的⽤户ID
-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 翻译:对SELinux⽤户映射使⽤特定的SEUSER
主要参数
-c:加上备注⽂字,备注⽂字保存在passwd的备注栏中。
-d:指定⽤户登⼊时的主⽬录,替换系统默认值/home/<⽤户名>
-D:变更预设值。
-e:指定账号的失效⽇期,⽇期格式为MM/DD/YY,例如06/30/12。缺省表⽰永久有效。
-f:指定在密码过期后多少天即关闭该账号。如果为0账号⽴即被停⽤;如果为-1则账号⼀直可⽤。默认值为-1.
-g:指定⽤户所属的组。值可以使组名也可以是GID。⽤户组必须已经存在的,期默认值为100,即users。
-G:指定⽤户所属的附加组。
-
m:⾃动建⽴⽤户的登⼊⽬录。
-M:不要⾃动建⽴⽤户的登⼊⽬录。
-n:取消建⽴以⽤户名称为名的组。union品牌
-r:建⽴系统账号。
-s:指定⽤户登⼊后所使⽤的shell。默认值为/bin/bash。
-u:指定⽤户ID号。该值在系统中必须是唯⼀的。0~499默认是保留给系统⽤户账号使⽤的,所以该值必须⼤于499。
4.说明
useradd可⽤来建⽴⽤户账号,它和adduser命令是相同的。账号建好之后,再⽤passwd设定账号的密码。使⽤useradd命令所建⽴的账号,实际上是保存在/etc/passwd⽂本⽂件中。
常⽤:
useradd testuser -c "c参数后⾯接注释信息"-p "⽤户密码"
useradd testuser -M -s /sbin/nologin
#⽤户testuser 没有家⽬录,也不可以登陆
软件测试网课删除⽤户userdel -r testuser
5.应⽤实例
建⽴⼀个新⽤户账户testuser1,并设置UID为544,主⽬录为/usr/testuser1,属于users组:
#useradd -u 544 -d /usr/testuser1  -g users -m  testuser1
加-m 如果主⽬录不存在则⾃动创建
使⽤管理员账号登陆系统,建⽴⽤户tmp_3452 密码3sdt5:Eawhg
6.应⽤实例
使⽤管理员账号登陆系统,建⽴⽤户tmp_3452 密码3sdt5:Eawhg
添加⽤户命令:
[root@ptr228 ~]# adduser tmp_3452
修改密码命令:
[root@ptr228 ~]# passwd tmp_3452
在系统出现提⽰输⼊密码是输⼊密码:3sdt5:Eawhg 系统提⽰输⼊确认密码后再输⼊⼀次。OK添加成功
7.useradd批量添加⽤户
使⽤useradd时,如果后⾯不添加任何参数选项,例如:#sudo useradd test创建出来的⽤户将是默认“三⽆”⽤户:⼀⽆Home Directory,⼆⽆密码,三⽆系统Shell。
步骤如下:冒泡排序算法详解
(1)建⽴⽤户名列表⽂件 (同上)
(2)创建⽤户密码对应⽂件,格式为username:password (注意⽂件的格式)
stu1:tt1
stu2:tt2
stu3:tt3
stu4:tt4
stu5:tt5
stu6:tt6
(3)批量添加的脚本⽂件aa.sh
##添加⽤户,并且在/home/下为⽤户⽣成⽤户⽬录。cat < | xargs -n 1 useradd -m##批处理模式下更新密码
chpasswd < ##将上述的密码转换到密码⽂件和组⽂件
pwconv##结束验证信息
echo "OK 新建完成"(4)执⾏该脚本⽂件,查看执⾏过程
root@liu:/home/liu/Desktop/Dos# sh aa.sh
新建完成 useradd命令,在执⾏没有出错的情况下,不会输出任何的信息,不会与⽤户交互。但是⽤户必须要记住那些设置项⽬,否则添加的⽤户可能出现⼀些预想不到的结果。
8.新创建⼀个oracle⽤户,这初始属于oinstall组,且同时让他也属于dba组。
#useradd oracle -g oinstall -G dba
新创建⼀个oracle⽤户,这初始属于oinstall组,且同时让他也属于dba组。
9.⽆法使⽤shell,且其⽤户⽬录⾄/var/servlet/service
#useradd tomcat -d /var/servlet/service -s /sbin/nologin
⽆法使⽤shell,且其⽤户⽬录⾄/var/servlet/service
⼆.userdel删除⽤户
删除刚创建的账号 tmp_3452
删除⽤户命令:
[root@ptr228 ~]# userdel tmp_3452
或者连同⽤户⽬录⼀并删除:
[root@ptr228 ~]# userdel -f tmp_3452
注意:这⾥如果⽤户还在登陆的话,会提⽰,⽤户正在登陆⽆法删除。此时可能需要先强制⽤户退出。
强制退出已经登陆⽤户
查看当前登陆⽤户的命令:
[root@ptr228 ~]# wlinux修改口令的命令
会输⼊如下结果:
12:10:27 up 21:13, 1 user, load average: 0.00, 0.01, 0.08 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
root pts/0 *..*. 11:33 0.00s 0.08s 0.00s w
tmp_3254 ps1 *..*. 11:33 0.00s 0.08s 0.00s ls
这⾥知道了登陆⽤户的tty是ps1执⾏强制退出命令pkill:
命令原型: pkill -kill -t [TTY]
[root@ptr228 ~]# pkill -kill -t ps1
执⾏之后再执⾏名w 可以看到⽤户已经退出。reactor 阻抗多大
重复执⾏第⼆步的删除⽤户命令,删除成功。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。