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

View File

@@ -0,0 +1,24 @@
# modprobe
> 从Linux内核添加或删除模块。
> 更多信息:<https://manned.org/modprobe>。
- 假装将模块加载到内核中,但实际上不执行:
`sudo modprobe --dry-run {{module_name}}`
- 将模块加载到内核中:
`sudo modprobe {{module_name}}`
- 从内核中删除模块:
`sudo modprobe --remove {{module_name}}`
- 从内核中删除模块及其依赖的模块:
`sudo modprobe --remove-dependencies {{module_name}}`
- 显示内核模块的依赖关系:
`sudo modprobe --show-depends {{module_name}}`