1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-13 23:55:27 +02:00
tldr/pages/linux/dkms.md
Managor 1f63ed5e22
linux*: refresh old pages part 1 (#16251)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-04-25 04:34:04 +03:00

20 lines
496 B
Markdown

# dkms
> A framework that allows for dynamic building of kernel modules.
> More information: <https://manned.org/dkms>.
- List currently installed modules:
`dkms status`
- Rebuild all modules for the currently running kernel:
`dkms autoinstall`
- Install version 1.2.1 of the acpi_call module for the currently running kernel:
`dkms install -m {{acpi_call}} -v {{1.2.1}}`
- Remove version 1.2.1 of the acpi_call module from all kernels:
`dkms remove -m {{acpi_call}} -v {{1.2.1}} --all`