kmod
!!! Example "List available modules that is loaded
List loaded modules (lsmod compatibility)
Show information about a kernel module
Show detailed information for a module file
modinfo /lib/modules/$(uname -r)/kernel/drivers/net/e1000e.ko
Force unload a kernel module
Load a module with parameters
kmod modprobe snd-hda-intel power_save=1
Unload a module and its dependencies
modprobe -r snd-hda-intel
Insert a module directly from file
Remove a module using rmmod compatibility
List static device nodes for current kernel
Rebuild module dependency database
Rebuild dependencies for a specific kernel version
Check module dependencies without loading
modprobe --show-depends ext4
List all aliases for a module
modinfo -F alias usb_storage
Show module description only
modinfo -F description iwlwifi
List modules matching a pattern
kmod list | grep bluetooth
Load all modules for detected hardware
modprobe -a $(cat /proc/modules | awk '{print $1}')
Display module filename path