insmod
insmod
# To load the kernel module `module.ko`:
insmod module.ko
# To load the kernel module `module.ko` and keep it loaded after the system is rebooted:
insmod -k module.ko
# To load the kernel module `module.ko` and be verbose:
insmod -v module.kohelp
insmod [options] module
Load a kernel module.
Options:
-f, --force force loading of module even if already loaded
-k, --keep keep module loaded after reboot
-v, --verbose print verbose information
-q, --quiet suppress most messages
-h, --help show this help message
For more information, see the insmod man page.Last updated