Easy Tutorial
❮ Linux Comm Depmod Linux Comm Talk ❯

Linux modprobe Command

Linux Command Manual

The Linux modprobe command is used for automatically handling loadable modules.

modprobe can load specified individual modules or a set of dependent modules. modprobe uses the dependencies generated by depmod to decide which modules to load. If an error occurs during the loading process, modprobe will unload the entire set of modules.

Syntax

modprobe [-acdlrtvV][--help][module file][symbol name = symbol value]

Parameters:

Examples

Install the floppy drive module:

[[email protected] ~]# modprobe -v floppy

Uninstall the floppy drive module:

[[email protected] ~]# modprobe -v -r floppy

Linux Command Manual

❮ Linux Comm Depmod Linux Comm Talk ❯