You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
738 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# **userdel**
## 说明
**userdel命令** 用于删除给定的用户,以及与用户相关的文件。若不加选项,则仅删除用户帐号,而不删除相关文件
## 选项
```markdown
-f, --force 强制执行某些否则会失败的动作,例如:即使用户已经登录状态
-r, --remove 删除用户的同时删除主目录和邮件池
-R, --root CHROOT_DIR chroot 到的目录
-Z, --selinux-user 为用户删除所有的 SELinux 用户映射
```
## 实例
```bash
userdel linuxde # 删除用户linuxde但不删除其家目录及文件
userdel -r linuxde # 删除用户linuxde其家目录及文件一并删除;不要轻易用`-r`选项
```