监听来自 linux 内核或 udev 的硬件更改事件
我需要在存储设备安装和卸载上运行一些代码。
我如何在Linux上监听这些事件?
- 我正在考虑添加一些 udev 规则来运行一些脚本(这方面的任何专业知识受到赞赏)。
- 但我更愿意用我的守护进程(就像 udev 那样)或类似的东西在某个 netlink 套接字中监听来自内核的事件。
I need to run some code on storage device mounting and unmounting.
How can i listen for these events on linux?
- I was thinking on adding some udev rules to run some script (any know-how in this matter is appreciated).
- But I would much rather listen for events from the kernel in some netlink socket with my daemon (just like udev does) or something like that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 libudev 或更方便的,基于 glib 的 gudev 来监视 C 中的 udev 事件。
You can use libudev or the more convenient, glib based gudev to monitor udev events in C.
你必须听“uevent ”信号。将回调附加到该信号并等待通知。
You have to listen to the "uevent" signal. Attach a callback to this signal and wait for the notification.