Rename user's group name

61

18

I just did usermod -l login-name old-name to change the username, but the group name is still the old one.

Any way of renaming the group name? I can't find any info to do so.

w0rldart

Posted 2012-03-23T20:34:11.017

Reputation: 2 363

Answers

80

groupmod should work fine:

$ groupmod --help
Usage: groupmod [options] GROUP

Options:
  -g, --gid GID                 change the group ID to GID
  -h, --help                    display this help message and exit
  -n, --new-name NEW_GROUP      change the name to NEW_GROUP
  -o, --non-unique              allow to use a duplicate (non-unique) GID
  -p, --password PASSWORD       change the password to this (encrypted)
                                PASSWORD

Use it like this:

groupmod --new-name NEW_GROUP_NAME OLD_GROUP_NAME

Der Hochstapler

Posted 2012-03-23T20:34:11.017

Reputation: 77 228

5run it as a superuser – KawaiKx – 2014-06-30T18:56:32.910

Does it require a logout, login to take effect, like adding someone to a group does? – Jonathan – 2018-05-18T19:13:28.933

@Jonathan: No, it takes effect immediately. – Russ Bateman – 2019-02-26T17:48:01.830

14

To reNAME as you asked:
sudo groupmod -n new-name current-name

Note: If the name is already in use but you want to use it anyway:
sudo groupmod -o -n new-name current-name

If you are root you don't need to use sudo

JorgeArtware

Posted 2012-03-23T20:34:11.017

Reputation: 281