add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/linux/rmmod.md Normal file
View File

@@ -0,0 +1,24 @@
# 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`