1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 20:02:09 +02:00
tldr/pages/linux/userdel.md
2022-01-27 21:08:33 +00:00

17 lines
408 B
Markdown

# userdel
> Remove a user account or remove a user from a group.
> See also: `users`, `useradd`, `usermod`.
> More information: <https://manned.org/userdel>.
- Remove a user:
`sudo userdel {{username}}`
- Remove a user in other root directory:
`sudo userdel --root {{path/to/other/root}} {{username}}`
- Remove a user along with the home directory and mail spool:
`sudo userdel --remove {{username}}`