diff --git a/pages/linux/dkms.md b/pages/linux/dkms.md new file mode 100644 index 000000000..cfac3cba6 --- /dev/null +++ b/pages/linux/dkms.md @@ -0,0 +1,20 @@ +# dkms + +> A framework that allows for dynamic building of kernel modules. +> More information: . + +- 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`