mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-14 08:48:24 +00:00
Update cheatsheets
This commit is contained in:
25
linux/dkms
Normal file
25
linux/dkms
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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`
|
||||
Reference in New Issue
Block a user