Usermod - Ajouter un groupe

Pour ajouter/changer un groupe à un utilisateur on utilise usermod - mais - il faut faire attention aux options sinon tous les anciens groupes de l’utilisateur seront supprimés.

Utilisation

Extrait du manuel

Extrait du manuel :

-d, --home HOME_DIR           new home directory for the user account
-e, --expiredate EXPIRE_DATE set account expiration date to EXPIRE_DATE
-f, --inactive INACTIVE set password inactive after expiration to INACTIVE
-g, --gid GROUP force use GROUP as new primary group
-G, --groups GROUPS new list of supplementary GROUPS
-a, --append append the user to the supplemental GROUPS mentioned by the -G option without removing him/her from other groups
-l, --login NEW_LOGIN new value of the login name
-L, --lock lock the user account
-m, --move-home move contents of the home directory to the new location (use only with -d)
-p, --password PASSWORD use encrypted password for the new password
-R, --root CHROOT_DIR directory to chroot into
-s, --shell SHELL new login shell for the user account
-u, --uid UID new UID for the user account
-U, --unlock unlock the user account

Manipuler les groupes

Changer le groupe primaire

Les utilisateurs n’ont qu’un seul groupe primaire, pour le changer :

# usermod -g <groupe> <user>

Ajouter un groupe secondaire supplémentaire

Pour ajouter le(s) groupe(s) secondaire(s) en laissant les autres, on utilise l’option -a (et -G) :

# usermod -aG <groupe>,<groupe2>,<groupe3> <user>

Ajouter un groupe secondaire

Pour changer le(s) groupe(s) secondaire(s) *en supprimant les anciens :

# usermod -G <groupe1>,<groupe2>,<groupe3> <user>

Documentation

RTFM

> Partager <