ChinaUnix.net
相关文章推荐:

disagrees about version of symbol module_layout

问题应该是编译模块的内核与运行的内核版本不严格匹配。 编译模块内核版本:2.6.18.e15 运行的内核:2.6.18 两个内核相差不大,我要怎样才能将此模块插入?

by hb12112 - C/C++ - 2011-11-29 12:03:43 阅读(14774) 回复(7)

相关讨论

Cpython Python3000 3.0a1 Release www.python.org Jython 2.2 Release www.jython.org IrontPython 2.0 alpha 3 Release www.codeplex.com/ironpython 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/6123/showart_372444.html

by junsi - Python文档中心 - 2007-09-01 14:49:28 阅读(1505) 回复(0)

有没有10.0版本阿

by sophia_24 - Linux论坛 - 2005-07-07 11:40:20 阅读(402) 回复(0)

pycrust 里的一段代码: # Mimic the contents of the standard Python shell's sys.path. import sys if sys.path[0]: sys.path[0] = '' # Add the application object to the sys module's namespace. # This allows a shell user to do: # >>> import sys # >>> sys.app.whatever sys.app = app del sys 设置 sys.path明白,但是设置 sys.app = app不明白 [code] import sys ...

by izhier - Python - 2009-03-02 19:09:08 阅读(1632) 回复(5)

呵呵,请问SSLeay模块该如何编译? 呵呵,我的环境是: Win 2K Pro (English),ActivePerl 813,OpenSSL-0.9.8a,SSLeay-0.9.0b,VC++6(en),MASM32 呵呵,SSLeay-0.9.0b里面有个Perl目录,该如何编译这个Perl的模块SSLeay? 呵呵,这里下载SSLeay-0.9.0b: http://www2.psy.uq.edu.au/~ftp/Crypto/SSL/SSLeay-0.9.0b.tar.gz

by y6cmE - Perl - 2005-12-09 20:30:55 阅读(1806) 回复(6)

请问一下,这样的错误是怎样造成的

by poize - Python - 2007-10-09 18:03:37 阅读(2495) 回复(2)

各位大侠您们好!我自己写了一个linux上的驱动程序编译通过,但在用命令 #insmod module.o时显示如下出错信息: module.o: kernel-module version mismatch module.o was compiled for kernel version 2.4.9-9 while this kernel is version 2.4.18-14 然后退出insmod, 我用的是redhat 8.0 kernel的确是2.4.18-14但为什么说module.o was compiled for kernel version 2.4.9-9我该怎样做才能让kernel-module和 kernel version相匹配能...

by x518889 - Linux论坛 - 2004-03-22 16:25:05 阅读(693) 回复(0)

[root@localhost drivetest]# insmod hello.o hello.o: couldn't find the kernel version the module was compiled for 请问出现了上面的问题怎么解决啊 查了好多资料都找不找解决方法!

by 基地小头目 - 内核/嵌入技术 - 2006-12-22 16:09:40 阅读(847) 回复(1)

编译没有问题。 生成了my_module.o 但是用insmod my_module.o时出错: my_module.o: unresolved symbol proc_unregister my_module.o: unresolved symbol proc_register my_module.o: Hint: You are trying to load a module without a GPL compatible license and it has unresolved symbols. The module may be trying to access GPLONLY symbols but the problem is more likely to be a coding or user error. Contact t...

by sway2004009 - C/C++ - 2005-12-06 00:17:07 阅读(1303) 回复(8)

请看: http://bbs.chinaunix.net/forum/viewtopic.php?p=2186341&highlight=xiangcatcat#2186341 [code] Vhost Limit module version 0.1 for Apache 2.x License: Open Source Code. Just keep my credits. Last Updated February 24th, 2004 Author Ivan Barrera (Bruce) Allow to specify the max clients, per virtual host Requires module homepage at Http://apache.Ivn.cl [/code] 由于Http://apache.Ivn.cl打不...

by freeand - 服务器应用 - 2004-09-05 08:43:02 阅读(903) 回复(0)

源程序 #define module #include module.h>; int init_module(void){ printk("<1>;Hello World\n"); return 0; } void cleanup_module(void){ printk("<1>;Bye, Bye"); } 在新装的系统Red Hat 7.3 ,内核 2.4.18-3 编译 root@233serv#gcc -c -O3 myphide.c 通过,生成myphide.o root@233serv#insmod myphide.o myphide.o: kernel-module version mismatch myphide.o was compiled for kernel version 2...

by wu7052 - Linux论坛 - 2003-03-24 16:42:58 阅读(755) 回复(3)