mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 02:41:24 +00:00
31 lines
679 B
Plaintext
31 lines
679 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# usermod
|
|
|
|
> Modify a user account.
|
|
> See also: `users`, `useradd`, `userdel`.
|
|
> More information: <https://manned.org/usermod>.
|
|
|
|
- Change a username:
|
|
|
|
`sudo usermod --login {{new_username}} {{username}}`
|
|
|
|
- Change a user ID:
|
|
|
|
`sudo usermod --uid {{id}} {{username}}`
|
|
|
|
- Change a user shell:
|
|
|
|
`sudo usermod --shell {{path/to/shell}} {{username}}`
|
|
|
|
- Add a user to supplementary groups (mind the lack of whitespace):
|
|
|
|
`sudo usermod --append --groups {{group1,group2,...}} {{username}}`
|
|
|
|
- Change a user home directory:
|
|
|
|
`sudo usermod --move-home --home {{path/to/new_home}} {{username}}`
|