gpt4 book ai didi

linux - rmmod 失败并显示设备或资源繁忙消息

转载 作者:太空宇宙 更新时间:2023-11-04 04:17:47 26 4
gpt4 key购买 nike

我在网上搜索过,但仍然没有找到答案。我按照http://ubuntuforums.org/showthread.php?t=800251上的指示进行操作。它编译正常,我可以进行 insmod 操作。消息显示正常。但是当我运行 rmmod 时,它失败并显示“设备或资源忙”消息。我改变了模块的名称和insmod,rmmod,同样的情况发生。我不知道如何强制 rmmod 模块,我也想知道是什么导致了这种“资源繁忙”现象。任何想法?我正在使用 ubuntu,并被告知系统是从未编译的二进制镜像安装的,所以我猜测系统中存在一些差异。下面的程序有什么问题吗?提前致谢。陈

#include <linux/module.h>

static int __init hello_world( void )
{
printk( "hello world!\n" );
return 0;
}

static void __exit goodbye_world( void )
{
printk( "goodbye world!\n" );
}

module_init( hello_world );
module_exit( goodbye_world );

最佳答案

也许您应该检查您是否使用兼容的编译器。

查看内核使用的编译器版本的方法:cat/proc/version

关于linux - rmmod 失败并显示设备或资源繁忙消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15405219/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com