Usermod - Modifier le /etc/passwd

Pour modifier les informations d’un utilisateur contenues le /etc/passwd on utilise usermod.

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

Modififications

Changement du login :

# usermod -l <New_login_user> <user>

Changement du répertoire personnel de l’utilisateur :

# usermod -d /home/users/<user> -m <user>

Changer le shell de connexion :

# usermod -shel /bin/bash <user>

Changer le groupe primaire :

# usermod -g <groupe> <user>

Ajouter un groupe secondaire supplémentaire en laissant les autres, on utilise l’option -a (et -G) :

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

Ajouter un groupe secondaire en supprimant les anciens :

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

Documentation

RTFM

> Partager <