mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
20 lines
524 B
Plaintext
20 lines
524 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# kmod
|
|
|
|
> Manage Linux kernel modules.
|
|
> This program is usually called via its symlinks: `lsmod`, `rmmod`, `insmod`, `modinfo`, `modprobe`, and `depmod`.
|
|
> See their respective pages for more information.
|
|
> More information: <https://manned.org/kmod>.
|
|
|
|
- List currently loaded kernel modules:
|
|
|
|
`kmod list`
|
|
|
|
- Display the static device nodes information provided by the modules of the currently running kernel:
|
|
|
|
`kmod static-nodes`
|