本文主要是介绍【linux】用户和组的管理:添加、修改、删除(useradd usermod userdel groupadd groupdel),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、用户
1、添加
$ useradd -h
Usage: useradd [options] LOGINuseradd -Duseradd -D [options]Options:-b, --base-dir BASE_DIR base directory for the home directory of the new account-c, --comment COMMENT 加上备注文字,备注文字保存在passwd的备注栏中。-d, --home-dir HOME_DIR 用户的家目录-D, --defaults 显示或更改默认值-e, --expiredate EXPIRE_DATE 指定账号的失效日期,日期格式为MM/DD/YY,例如06/30/12。缺省表示永久有效。-f, --inactive INACTIVE 指定在密码过期后多少天即关闭该账号。如果为0账号立即被停用;如果为-1则账号一直可用。默认值为-1.-g, --gid GROUP 指定用户所属的群组。值可以使组名也可以是GID。用户组必须已经存在的,期默认值为100,即users-G, --groups GROUPS 指定用户所属的附加群组。-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 las
这篇关于【linux】用户和组的管理:添加、修改、删除(useradd usermod userdel groupadd groupdel)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!