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

20
pages.zh/linux/dkms.md Normal file
View File

@@ -0,0 +1,20 @@
# dkms
> 一个允许动态构建内核模块的框架。
> 更多信息:<https://github.com/dell/dkms>。
- 列出当前已安装的模块:
`dkms status`
- 为当前正在运行的内核重建所有模块:
`dkms autoinstall`
- 为当前正在运行的内核安装版本 1.2.1 的 acpi_call 模块:
`dkms install -m {{acpi_call}} -v {{1.2.1}}`
- 从所有内核中移除版本 1.2.1 的 acpi_call 模块:
`dkms remove -m {{acpi_call}} -v {{1.2.1}} --all`