cmd/usermod

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< cmd(Redirected from usermod)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Basics

usermod is a command for modifying users on a Linux system.

How To

Assign a user to an additional (non-primary) group:

  • usermod -a -G <groupname> <username>

Note that if you are adding yourself to another group, the new membership will not take effect unless you log in again (even if you open a new terminal session). To do this without logging out of your GUI session, use sudo login <your username> (not sure the last parameter is required).

Related