HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

kmod — Manage Linux kernel modules. This program is usually called via its symlinks: `lsmod`, `rmmod`, `ins

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandmodulesthisclimanagekmodlinuxkernel
linux

Problem

How to use the kmod command: 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>.

Solution

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

Code Snippets

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

Context

tldr-pages: linux/kmod

Revisions (0)

No revisions yet.