vote up -2 vote down star

What's the command line utility and the arguments it requires?

flag

43% accept rate
not-programming-related – George Stocker Feb 4 at 0:04
See serverfault.com – Michael Prescott Oct 1 at 16:08

7 Answers

vote up 8 vote down check
usermod -a -G group1,group2,group3 username
link|flag
vote up 2 vote down

G'day,

Assuming the user already exists, the easiest way is to just open the file /etc/group and add the username to the relevant groups that you want them to be a member of. The usernames are comma separated from the other usernames in the group.

You can check by doing a id -G username to verify if they are members of the groups you intended.

HTH.

cheers,

Rob

link|flag
vote up 1 vote down

Use usermod with the -a and -G options.

link|flag
vote up 1 vote down

The utility is usermod and is used like:

usermod -a -G group1,group2 username

Where username is the user you want to modify and group1 and group2 are the new groups you want that user to join. Running the command without the -a argument will remove that user from all groups except group1 and group2.

To check a users group memberships use the groups command:

groups username
link|flag
vote up 0 vote down
usermod -a -G groupname username
link|flag
vote up 0 vote down

Adding Groups

groupadd group1
groupadd group2

Adding user to the group

useradd -G group1,group2 -d /home/user1 -s /usr/bin/bash user1

id user1

will show the details of user user1

link|flag
vote up 0 vote down

On Debian, and I assume on Ubuntu as well, the canonical way of adding users and adding users to groups is through the adduser script, not useradd. To add a user to a group, just use:

adduser user group

Though using useradd or usermod works as well of course and is probably more cross platform (but the adduser script reads settings from /etc/adduser.conf and is hence usually preferable).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.