需要 libudev 的建议

发布于 2024-12-04 18:29:47 字数 1541 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

2024-12-11 18:29:47

libudev 是一个非常简单的库。在阅读了您提到的库并使用 API 文档(网站应该很快就会上线)后,我能够得到我想要的东西。 udevadm 很有帮助,在发出 # udevadm info --query=all --name=/path/to/dev 后,您将获得 udev 有关该设备的所有信息,更重要的是,这些是属性函数中使用的参数(例如udev_device_get_property_value(device, "ID_VENDOR"))。因此,学习 libudev 的最佳方法是在 signal11 教程、API 文档和 udevadm 信息的帮助下开始使用它。

编辑:libudev 目前是 systemd 的一部分 - 文档可作为手册页提供 - https ://www.freedesktop.org/software/systemd/man/libudev.html#

libudev is quite simple library. After reading library you've mentioned and using API documentation (site should be soon up) I was able to get what I wanted. udevadm is great help, after issuing # udevadm info --query=all --name=/path/to/dev you'll get all information that udev has about this device and what's more important, these are parameters used in property functions (e.g. udev_device_get_property_value(device, "ID_VENDOR")). So best way to learn libudev is to start using it with help of signal11 tutorial, API documentation and udevadm informations.

EDIT: libudev is currently part of systemd - documentation is available as manual pages - https://www.freedesktop.org/software/systemd/man/libudev.html#

夏见 2024-12-11 18:29:47

对于那些展望 2023 年的人……

正如 Maciej 指出的那样,libudev 现在是 systemd 的一部分。

根据:

https://www.freedesktop.org/software/systemd/人/libudev.html#

...该库受支持,但不应在新项目中使用。
请参阅 sd-device(3) 以获取具有更多功能的等效替代品
现代 API。

sd-device 文档:

https://www.freedesktop.org /software/systemd/man/sd-device.html#

For those looking in 2023...

As Maciej pointed out, libudev is now a part of systemd.

According to:

https://www.freedesktop.org/software/systemd/man/libudev.html#

...this library is supported, but should not be used in new projects.
Please see sd-device(3) for an equivalent replacement with a more
modern API.

Documentation for sd-device:

https://www.freedesktop.org/software/systemd/man/sd-device.html#

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