Files
tldr/pages.zh/linux/rmmod.md

24 lines
460 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# rmmod
> 从Linux内核中移除模块。
> 更多信息:<https://manned.org/rmmod>。
- 从内核中移除一个模块:
`sudo rmmod {{module_name}}`
- 从内核中移除一个模块并显示详细信息:
`sudo rmmod --verbose {{module_name}}`
- 从内核中移除一个模块并将错误发送到syslog而不是`stderr`
`sudo rmmod --syslog {{module_name}}`
- 显示帮助信息:
`rmmod --help`
- 显示版本信息:
`rmmod --version`