mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
23 lines
518 B
Plaintext
23 lines
518 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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 {{[-R|--root]}} {{path/to/other_root}} {{username}}`
|
|
|
|
- Remove a user along with the home directory and mail spool:
|
|
|
|
`sudo userdel {{[-r|--remove]}} {{username}}`
|