1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 14:15:26 +02:00
tldr/pages/linux/usermod.md
Managor 7d7bfb0295
usermod: add a remove example (#17039)
Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com>
2025-06-30 21:05:31 +03:00

37 lines
894 B
Markdown

# usermod
> Modify a user account.
> See also: `users`, `useradd`, `userdel`.
> More information: <https://manned.org/usermod>.
- Change a username:
`sudo usermod {{[-l|--login]}} {{new_username}} {{username}}`
- Change a user ID:
`sudo usermod {{[-u|--uid]}} {{id}} {{username}}`
- Change a user shell:
`sudo usermod {{[-s|--shell]}} {{path/to/shell}} {{username}}`
- Add a user to supplementary groups (mind the lack of whitespace):
`sudo usermod {{[-aG|--append --groups]}} {{group1,group2,...}} {{username}}`
- Remove a user from specific groups:
`sudo usermod {{[-rG|--remove --groups]}} {{group1,group2,...}} {{username}}`
- Change a user home directory:
`sudo usermod {{[-m|--move-home]}} {{[-d|--home]}} {{path/to/new_home}} {{username}}`
- Lock an account:
`sudo usermod {{[-L|--lock]}} {{username}}`
- Unlock an account:
`sudo usermod {{[-U|--unlock]}} {{username}}`