OpenSUSE - 获取设备 ID(或名称)
我在 /dev/input 中有 8 个事件:event0、event1 ... event7。我只需要其中之一来进行触摸屏配置,但我不知道如何获取设备事件。触摸屏是 WACOM 系列触摸屏!
有什么方法可以获取设备名称及其匹配的 /dev/input/event* 节点的列表?
I have 8 events in /dev/input: event0, event1 ... event7. I only need one of them for touchscreen config, but I don't know how to get the device event. The touchscreen is a WACOM serial one!
Is there any way I could get a list of device names and their matching /dev/input/event* node?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
udevadm 命令将显示您的 WACOM 设备分配了哪个事件设备。 (我正在尝试 Ubuntu 11.04)
请在终端中输入以下内容并搜索“wacom”或“Wacom”。
/sbin/udevadm 信息 -export-db | less
如果找到匹配的关键字,请关注“N:...”列。
也许该列是由“input/event*”编写的。
The udevadm command will be showed that your WACOM device is allocated which event device. ( I'm try on The Ubuntu 11.04 )
Please type as below in your terminal and search "wacom" or "Wacom".
/sbin/udevadm info -export-db | less
If you found the matched keyword, focus "N: ..." column.
Maybe the column is written by "input/event*".