首页 > 代码库 > linux命令:usermod
linux命令:usermod
usermod命令简介:
此命令用于修改用户帐号属性。
1.命令格式:
usermod [option] USERNAME
2.命令功能:
用于修改用户帐号属性,所属组,附加组等信息。
3.命令参数:
-u UID 修改用户的UID
-g GID 修改用户的GID 必须是已存在的组
-a -G GID:不使用-a选项,会覆盖此前的附加组;
-c 给用户添加备注信息
-d -m:指定新的家目录,-m表示并把原家目录中的文件复制到新的家目录
中(不加-m原家目录的文件就无法访问)
-s 修改用户的登录shell
-l 修改用户的登录名称 usermod -l newusername oldusername
-L:锁定帐号
-U:解锁帐号
4.命令实例:
1、新建用户test,密码test,另外添加usertest组
#useradd test #echo "test" | passwd --stdin test #groupadd usertest
2、把test用户加入usertest组
#usermod -aG usertest test ##多个组之间用空格隔开 #id test uid=500(test) gid=500(test) groups=500(test),501(usertest)
3、修改jack用户的家目录
[root@xuelinux test1]# usermod -md /home/jack jack
[root@xuelinux test1]# tail -n3 /etc/passwd
oprofile:x:16:16:Special user account to be used by OProfile:/home/oprofile:/sbin/nologin
donggen:x:500:500::/home/donggen:/bin/bash
jack:x:777:500:测试用户管理命令的用户:/home/jack:/bin/bash 家目录已经更改为/home/jack
4、修改用户名
#usermod -l urchin(新用户名称) test(原来用户名称) #id urchin uid=500(urchin) gid=500(test) groups=500(test),501(usertest)
本文出自 “学linux历程” 博客,请务必保留此出处http://woyaoxuelinux.blog.51cto.com/5663865/1861120
linux命令:usermod