Linux Commands Helper
💬 Your AI-powered Linux assistant
lsmod Command - Show the Status of Modules in Linux Kernel
The lsmod command displays the status of modules in the Linux kernel. It shows which kernel modules are currently loaded, their size, and their dependencies.
Syntax
lsmod
Examples
lsmod
List all currently loaded kernel modules.
Notes
- lsmod is a simple wrapper around
/proc/modules
. - For more detailed information, use
modinfo
ormodprobe
.