2014-03-24 14:31:06 +04:00
|
|
|
# usermod
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
> Modifies a user account.
|
2014-03-24 14:31:06 +04:00
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Change a user's name:
|
2014-03-24 14:31:06 +04:00
|
|
|
|
|
|
|
`usermod -l {{newname}} {{user}}`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Add user to supplementary groups (mind the whitespace):
|
2014-03-24 14:31:06 +04:00
|
|
|
|
|
|
|
`usermod -a -G {{group1,group2}} {{user}}`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Create a new home directory for a user and move their files to it:
|
2014-03-24 14:31:06 +04:00
|
|
|
|
2015-10-28 11:33:06 +03:00
|
|
|
`usermod -m -d {{/path/to/home}} {{user}}`
|