2020-12-02 02:12:38 -06:00
|
|
|
# dkms
|
|
|
|
|
|
|
|
> A framework that allows for dynamic building of kernel modules.
|
2025-04-25 04:34:04 +03:00
|
|
|
> More information: <https://manned.org/dkms>.
|
2020-12-02 02:12:38 -06:00
|
|
|
|
|
|
|
- List currently installed modules:
|
|
|
|
|
|
|
|
`dkms status`
|
|
|
|
|
|
|
|
- Rebuild all modules for the currently running kernel:
|
|
|
|
|
2025-08-26 03:42:48 +08:00
|
|
|
`sudo dkms autoinstall`
|
2020-12-02 02:12:38 -06:00
|
|
|
|
|
|
|
- Install version 1.2.1 of the acpi_call module for the currently running kernel:
|
|
|
|
|
2025-08-26 03:42:48 +08:00
|
|
|
`sudo dkms install -m {{acpi_call}} -v {{1.2.1}}`
|
2020-12-02 02:12:38 -06:00
|
|
|
|
|
|
|
- Remove version 1.2.1 of the acpi_call module from all kernels:
|
|
|
|
|
2025-08-26 03:42:48 +08:00
|
|
|
`sudo dkms remove -m {{acpi_call}} -v {{1.2.1}} --all`
|