红联Linux门户
Linux帮助

How to add user in linux

发布时间:2011-12-23 11:36:06来源:红联作者:AKLV
I want to add a user in a group, while doing so getting user doesn't exist. and when added this user getting user already exist message.

For reference find the below output.

[root@indls00x ~]# usermod -G Ind-Linux-QA mathurr
usermod: user mathurr does not exist
[root@indls00x ~]# /usr/bin/getent passwd | grep mathurr
mathurr:x:12271:12271:Mathur, Rajat X:/home/mathurr:/bin/bash
[root@indls00x ~]#
文章评论

共有 2 条评论

  1. dzp98dzp 于 2012-02-03 09:59:28发表:

    first command: useradd mathurr
    then add user in your group

  2. aaa12 于 2012-01-04 12:55:25发表:

    语  法:usermod [-LU][-c <备 注>][-d <登入目录>][-e <有效期限>][-f <缓冲天数>][-g <群组>] [-G <群组>][-l <帐号名称>][-s ][-u ][用户帐号]

    补充说明:usermod可用来修改用户帐号的各项设定。

    参  数:
     -c<备注>  修改用户帐号的备注文字。
     -d登入目录>  修改用户登入时的目录。
     -e<有效期限>  修改帐号的有效期限。
     -f<缓冲天数>  修改在密码过期后多少天即关闭该帐号。
     -g<群组>  修改用户所属的群组。
     -G<群组>  修改用户所属的附加群组。
     -l<帐号名称>  修改用户帐号名称。
     -L  锁定用户密码,使密码无效。
     -s  修改用户登入后所使用的shell。
     -u  修改用户ID。
     -U  解除密码锁定。