Remove Linux User From a Secondary Group ( Supplementary Groups )

by Vivek Gite · 9 comments

Q. User tom is a member of a group called sales and printer. I'd like to remove tom from a group called printer without editing any user configuration text files stored at /etc/ directory?

A. /etc/groups file defines group membership for each user. usermod command has -G option to set a list of supplementary groups which the user is also a member of. Each group is separated from the next by a comma, with no intervening whitespace. If the user is currently a member of a group which is not listed, the user will be removed from the group.

Step # 1: Find out user group identity

Use id command:
# id -nG {user-name}
# id -nG tom

Output:

sales printer

Step # 2: Remove user from printer group

Use the following syntax:
# usermod -G {groupname1,groupname2,...} {username}
To keep membership for sales only group (remove user tom from printer group), enter:
# usermod -G sales tom
# id -nG tom

Output:

sales

The following example remove user vivek from all groups except admin, audio, video and powerdev group:
# id -nG vivek
Output:

vivek adm dialout cdrom floppy audio dip video plugdev scanner netdev lpadmin powerdev admin

Modify group membership, enter:
# usermod -G admin, audio, video, powerdev vivek
# id -nG tom

Sample output:

vivek audio video powerdev admin

For more information, read usermod(8) command man page:
$ man usermod

Featured Articles:

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 9 comments… read them below or add one }

1 test 03.25.09 at 3:21 pm

Thanks for your website.
it’s very helpful.

2 shingai 04.02.09 at 1:42 pm

lets say i want to add an existing user to an existing group. when the user belongs to other groups already. what command will i use.

using usermod-g “groupname” user will change the initial gropu of the user and delete him from another group.
usermod -G this will lead from the user being deleted ffrom all other groups except the one sspecified.

3 kailash bhandari 04.25.09 at 6:38 pm

A user (pop)who is belong to SALES group. i want that pop is remove from SALES group. how can i do it. not tell me manually. i want command to remove it..

4 BAReFOOt 04.28.09 at 3:41 pm

In one line (and nice for scripts):
Add a group: usermod -aG GROUP USER
Remove a group: usermod -G $(id -nG USER| sed -e ’s/GROUP //’ -e ’s/ /,/g’) USER

5 ashim 06.10.09 at 5:42 am

Can anyone tell me command(s) to add an user to a new group without mentioning all the groups the user previously belongs to? (I haven’t gone thru man)

6 Bhagyesh Dhamecha 07.15.09 at 10:39 am

Please add me in your group and please gime update and help for any my query..

Thanks
Bhagyesh

7 cheri 08.13.09 at 6:22 pm

Hi,

I have added user to a group called sales using smbldap-usermod -G .
How do I remove this user from the supplementary group. I was once succesful in removing the user by using the command smbldap-usermod -g . But when I give the time id -nG the supplementary group still shows up.
Can you explain why this happens and how to overcome this problem.
Appreciate your help

Cheri

8 Mike 09.23.09 at 10:12 am

to remove a user from one supplemental group only:-

gpasswd -d USER GROUP

9 Mario 09.23.09 at 8:02 pm

this dint help me

id -nG aares00
OutPut= aaresusers rootmembers

gpasswd -d aares00 rootmembers
OutPut= Removing user aares00 from group rootmembers

id -nG aares00
OutPut= aaresusers rootmembers

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous FAQ:

Next FAQ:

nixCraft FAQ PDF Collection Now Available To All