ChinaUnix.net
相关文章推荐:

Could not access KVM kernel module

来自FreeBSD官方网站的链接 http://www.freesoftwaremagazine.com/articles/writing_a_kernel_module_for_freebsd 有朋友有兴趣翻译吗:mrgreen: :mrgreen: :mrgreen: [ 本帖最后由 gvim 于 2008-7-2 14:23 编辑 ]

by gvim - BSD - 2008-07-03 09:30:04 阅读(2223) 回复(5)

相关讨论

I have write a test kernel module for FreeBSD 6.1, it's very simple, and make no sense, it's just proof of concept! this module is named hello.ko, it's source code is hello.c, and the module build script is Makefile. Okay, now let's see some effect of that module. first, cd into the directory of the source and built module, which is /root/src in my configuration! second, load the hello.ko into ke...

by rockins - BSD文档中心 - 2006-11-29 01:30:22 阅读(810) 回复(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)

我觉得linux对于高手来说真是无所不能,而且随心所欲! 但对想我这样的新手来说,要想实现某些在windows下根本不用去关心的应用,可能真是很难。 我一直有个很困惑的问题,不知道哪位大虾能给解惑或指点一下。 问题就是modulekernel以及某些发行版如debian的关系。 先说一下我的理解,kernel里有很多很多硬件运行需要的东西。而module是动态加载进kernel以扩展某些kernel中没有的功能的。 以无线网络的ipw2100为例,我原来的2....

by tgf - 内核/嵌入技术 - 2006-03-31 10:54:26 阅读(1182) 回复(2)

kernel md module does not support 请教 我安装之后 ,运行init 5结果出来别的都ok 结果就这个failed

by sunzhi888 - Linux论坛 - 2005-05-08 09:05:48 阅读(472) 回复(0)

我的cli已经编译过去了,但是 怎么执行 请大虾指教啊 could not load program cliexp: could not load module /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/ppc64/libstdc++.a(libstdc++.so.6). Dependent module /opt/freeware/lib/gcc/powerpc-ibm-aix5.3.0.0/4.0.0/libgcc_s.a(shr.o) could not be loaded. The module has an invalid magic number. could not load module cliexp. Dependen...

by jayli426 - DB2 - 2008-05-14 22:05:12 阅读(3586) 回复(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-modulekernel version相匹配能...

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

1、在使用smbutil view //用户名@主机名 查看samba共享时,提示 smb_lib_int can't find kernel module 2、这时候可以使用kldload smbfs 这时候就可以正常使用smbutil了 3、总结,在/usr/local/etc/rc.d/目录下建立一samba.sh并赋予可执行权限 其内容如下: #!/bin/sh kldload smbfs /usr/local/sbin/smbd /usr/local/sbin/nmbd 这样系统就可以自动启动和使用samba提供的服务了。 本文来自ChinaUnix...

by edifly - BSD文档中心 - 2008-04-03 12:45:11 阅读(1095) 回复(0)

编译内核时 [root@localhost lvs]# mkinitrd /boot/initrd-2.4.20lvs.img 2.4.20 No module dpt_i2o found for kernel 2.4.20 这是怎么回事?我在make menuconfig时无论是把scsi选项为模块还是编译进内核,都是这样的结果。 [ 本帖最后由 greysky-zfj 于 2007-1-10 17:50 编辑 ]

by greysky-zfj - 系统管理 - 2007-01-10 17:29:15 阅读(1331) 回复(0)

cat /proc/modules 可以看到模块被引用的情况,如[unused]表示未使用 那么:kernel是怎样判断module是否被使用的?

by FreeGnu - 内核/嵌入技术 - 2006-12-22 18:06:03 阅读(528) 回复(2)