Top "Insmod" questions

insmod tries to link a module into the running kernel by resolving all symbols from the kernel's exported symbol table.

How do I configure modprobe to find my module?

I'm trying to get a kernel module to load at boot. If I run insmod /path/to/module.ko, it …

kernel kernel-module insmod
How to determine if a specific module is loaded in linux kernel

I am just curious is there any way to determine if a particular module is loaded/installed. $lsmod lists all …

unix linux-kernel insmod
insmod fails with "Unknown symbol in module" for a symbol defined in another module

I am working in Ubuntu. I am trying to make two kernel modules which uses each other functions. My problem …

c linux linux-kernel kernel-module insmod
Error using insmod "Could not insert module hello_world.ko: Invalid module format"

I'm trying to make a hello_world kernel module using C and Bash on a Raspberry Pi. I successfully used …

c linux raspberry-pi insmod
Warning: modules_install: missing 'System.map' file. Skipping depmod

I am trying to insert a kernel module using depmod and modprobe utilities in-order to resolve any dependencies. When I …

makefile linux-kernel kernel-module insmod
Not able to remove a loadable kernel module

I'm writing a loadable kernel module and trying to test it. After inserting it I was trying to remove it …

c kernel-module insmod
init_module '/path/to/module.ko' failed <File exists>

I am trying to initiate a driver module by insmod path/to/module.ko and I am getting following error &…

android insmod
how to manually load wlan module in Android gingerbread on Nexus S

I'm trying to use command line to connect to ad-hoc network without Wifi in Settings activated. When loading with 'insmod /…

android nexus-s insmod
Linux modules version error "Invalid module format"

I made Linux external module and because my module need Linux kernel symbol, I set the Modversion config and make …

linux module kernel insmod