使用modprobe“致命:模块未找到错误”

时间:2010-06-29 12:12:36

标签: c linux linux-kernel kernel linux-device-driver

我遇到modprobe命令的问题...我编译了hello world模块并用insmod加载它,它工作正常,当我lsmod时,我可以看到它在输出列表中。但是当我使用modprobe插入此模块时,我收到一个致命错误:

root@okapi:/home/ravi# modprobe ./hello.ko 
FATAL: Module ./hello.ko not found.
root@okapi:/home/ravi#

以下是模块代码:

#include <linux/init.h>
#include <linux/module.h>

MODULE_LICENSE("Dual BSD/GPL");

static int hello_init(void)
{
        printk(KERN_ALERT "Hello, world\n");
        return 0;
}
static void hello_exit(void)
{
        printk(KERN_ALERT "Goodbye, cruel world\n");
}

module_init(hello_init);
module_exit(hello_exit);

和Makefile

obj-m += hello.o

all:
        make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules

clean:
        make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean

6 个答案:

答案 0 :(得分:25)

原因是modprobe查看模块的/lib/modules/$(uname -r),因此无法使用本地文件路径。这是modprobeinsmod之间的差异之一。

答案 1 :(得分:6)

最好的事情是实际使用内核makefile来安装模块:

以下是要添加到Makefile的片段

顶部附近的

添加:

PWD=$(shell pwd)
VER=$(shell uname -r)
KERNEL_BUILD=/lib/modules/$(VER)/build
# Later if you want to package the module binary you can provide an INSTALL_ROOT
# INSTALL_ROOT=/tmp/install-root

在最后添加:

install:
        $(MAKE) -C $(KERNEL_BUILD) M=$(PWD) \
           INSTALL_MOD_PATH=$(INSTALL_ROOT) modules_install

然后你可以发出

    sudo make install

这将把它放在/ lib / modules / $(uname -r)/ extra /

或/ lib / modules / $(uname -r)/ misc /

并适当地运行depmod

答案 2 :(得分:2)

尝试insmod而不是modprobe。 modprobe的 在模块目录/ lib / modules / uname -r中查找所有模块和其他模块 文件

答案 3 :(得分:2)

我认为应该在/lib/modules/ {{}}}} / /} your_module“命令工作

答案 4 :(得分:0)

Insert this in your Makefile

 $(MAKE) -C $(KDIR) M=$(PWD) modules_install                      

 it will install the module in the directory /lib/modules/<var>/extra/
 After make , insert module with modprobe module_name (without .ko extension)

OR

After your normal make, you copy module module_name.ko into   directory  /lib/modules/<var>/extra/

然后执行modprobe module_name(不带.ko扩展名)

答案 5 :(得分:0)

确保在加载模块之前关闭网络:

sudo stop networking

它帮助了我 - https://help.ubuntu.com/community/UbuntuBonding