如何在 Ubuntu 中启动时加载自定义模块?

发布于 2024-10-06 05:33:13 字数 223 浏览 4 评论 0原文

我创建了一个名为 Hello.ko 的自定义简单模块 我使用命令“insmod hello.ko”安装模块,用“dmesg”检查它并且它正在工作,但是当我重新启动系统时,我必须手动加载它。那么,我该如何自动加载我的自定义模块,以及我必须将 hello.ko 放在哪里? 加载模块后,我想显示消息 Hello World 直到按下 Enter 键。有人可以帮助我吗?

I created a custom and simple module named Hello.ko
I install the module with the command "insmod hello.ko", I check it with "dmesg" and it's working, but when I restart the system, I have to load it manually. So, how can I do for loading my custom module automatically, and where do I have to put the hello.ko?
After loading the module, I would like to show the message Hello World until I press the Enter Key. Can anybody help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你在看孤独的风景 2024-10-13 05:33:14

将模块添加到 /etc/modules 文件中。

然后将该模块放入 /lib/modules/kernelname 目录中。

Add the module to the /etc/modules file.

And then put the module in your /lib/modules/kernelname catalogue.

凉宸 2024-10-13 05:33:13

该技术在 Ubuntu 13.10 上不起作用。因此,经过几次尝试和错误尝试后,我最终得到了以下结果:

将我的内核模块复制到驱动程序目录。

$ sudo cp mymodule.ko /lib/modules/$(uname -r)/kernel/drivers/

将我的模块的简单名称添加到文件 /etc/modules 中。您可以编辑该文件或仅附加到该文件,如下所示。请将 mymodule 替换为您的模块名称。

$ echo 'mymodule' | sudo tee -a /etc/modules

更新模块依赖项列表。

$ sudo depmod

重新启动计算机,瞧,它成功了。

This technique didn't work on Ubuntu 13.10. So after a few trial and error tries I ended up with this:

Copy my kernel module to the drivers directory.

$ sudo cp mymodule.ko /lib/modules/$(uname -r)/kernel/drivers/

Add the simple name of my module to the file /etc/modules. You can edit the file or just append to it as shown here. Please replace mymodule to your module's name.

$ echo 'mymodule' | sudo tee -a /etc/modules

Update the list of module dependencies.

$ sudo depmod

Reboot the computer and voila, it worked.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文