System Grab Bag

View all TLDR pages from Linux (or from all pages)

dkms

A framework that allows for dynamic building of kernel modules. More information: https://github.com/dell/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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.