ChinaUnix.net
相关文章推荐:

insmod 详解

系统启动后,用insmod 加载模块,出现提示: insmod:unresolved symbol register_sound_dsp.R16aa6112 insmod:unresolved symbol kmalloc insmod:unresolved symbol _get_free_pages insmod:unresolved symbol prink 等等,请问是什么地方出了问题啊? 谢谢!

by alaohhw - 系统管理 - 2005-12-15 17:31:44 阅读(680) 回复(3)

相关讨论

在加载module时,出现以下错误: XXX.o: couldn't find the kernel version the module was compiled for 这是为何,望各位提示

by A-Liang - 内核/嵌入技术 - 2005-12-02 21:27:45 阅读(776) 回复(9)

我modprobe 3c90x通过 但是为什么我insmod 3c90x时为什么提示我没有此硬件呢? 我的内核是2.6.11 但是重新启动机器以后.就可以自动挂上这个3com的卡卡

by 扫净缘客 - Linux论坛 - 2005-05-12 08:56:53 阅读(384) 回复(4)

intmod 在aix下面有这个命令么?

by johnason - AIX - 2008-11-28 22:58:09 阅读(3261) 回复(10)

我以前的同事这么写了两行: 1. system("rmmod rmsio"); 2. system("insmod ./rmsio.ko"); 我认为这两行作用是先卸载后加载驱动,那就应该这么写啊: 3. system("rmmod rmsio.ko"); 4. system("insmod rmsio.ko"); 请问1,2 两行这么写是什么意思?

by herocsz - C/C++ - 2009-05-05 16:13:52 阅读(4016) 回复(4)

我直接以root身份登录,可以执行sbin。但用普通用户身份登录后,用su命令切换到超级用户,然后用cd /sbin切换到/sbin目录下,然后执行insmod命令,结果bash提示找不到这条命令,请问这是为什么?谢谢

by gta - 系统管理 - 2006-10-25 17:52:09 阅读(489) 回复(4)

我在编译 一个下载的程序时出现了问题 在make时没有错误 当make install时就出现错误了,我手动insmod .ko 文件也不行 然后我又用另一个相似的程序试,出现了同样的错误 make通过,install出现问题 make的结果: LD [M] /root/Desktop/aodv-uu-ipv6-0.9/lnx/kaodv6.o Building modules, stage 2. MODPOST CC /root/Desktop/aodv-uu-ipv6-0.9/lnx/kaodv6.mod.o LD [M] /root/Desktop/aodv-uu-ipv6-0.9/lnx/kaodv6...

by xiaxiuqiu - 内核/嵌入技术 - 2006-10-11 21:10:47 阅读(1923) 回复(4)

加载的是自己编译的模块,gcc -Wall -DMODULE -D_KERNEL_ -c生成了.o文件,insmod加载时出现错误ELF file led.o not for this architecture? 谢谢!

by jumbuck - 内核/嵌入技术 - 2006-04-06 15:51:07 阅读(482) 回复(1)

我正做一个驱动程序,写好后,准备装载进去测试一下,但insmod老提示说有错,于是我就写了个简单的测试程序,结果让我哭笑不得。 这是我的测试程序: #define MODULE #include ; static int output=1; int init_module(void) { printk("Output= %dn",output); return 0; } void cleanup_module(void){ printk("Adi, Bye, Chao, Ovuar, n"); } 再用 gcc -I /usr/src/linux-2.6.5-1.358/include/linux -O2 -...

by eaglehunter - 内核/嵌入技术 - 2005-01-11 23:41:16 阅读(612) 回复(3)

请问各位大侠,我在加载一个模块时遇到下面的错误:# insmod fipkernel.o Using fipkernel.o Warning: loading fipkernfel will taint the kernel: non-GPiL licenspe - Prop:riet ary, Copyrig ht (c) 2004 Sigmca Designas Inc. Anll rightns reserved. Soee http:t//www.tux.org/lk ml/#exporrt-tainteed for ignformation abouti taint eds modules ter IRQ (19) insmod: init_module: fipkernel: Input/output error 请问是...

by sharpcoco - Linux论坛 - 2004-12-23 14:49:39 阅读(743) 回复(5)

一个程序 [code]#include ; #include ; #include ; #include ; #include ; int int_module(void) { printk("<1>;Hello!\n"); return 0; } void cleanup_module(void) { printk("<1>;Goodbye!\n"); } [/code] [root@ge126lfs root]# gcc -c hello.c [root@ge126lfs root]# insmod hello.o hello.o: couldn't find the kern...

by ge126 - 内核/嵌入技术 - 2004-04-30 11:33:50 阅读(922) 回复(3)