Easy Tutorial
❮ Linux Comm Dircolors Linux Comm Cksum ❯

Linux insmod Command

Linux Command Manual

The Linux insmod (short for "install module") command is used to load modules.

Linux has many features that are implemented as modules, which are loaded into the kernel on demand. This approach keeps the kernel lean, improves efficiency, and maintains flexibility. These loadable modules are typically device drivers.

Syntax

insmod [-fkmpsvxX][-o <module name>][module file][symbol name = symbol value]

Parameter Description:

Example

Load a module

# insmod led.o

// Load the module into the kernel

Linux Command Manual

❮ Linux Comm Dircolors Linux Comm Cksum ❯