1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

dkms: add page (#4997)

This commit is contained in:
Samuel 2020-12-02 02:12:38 -06:00 committed by GitHub
parent 890d7e3553
commit b0ef7f61b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,20 @@
# 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`