无法从/ dev / input / event *获取鼠标移动事件

时间:2011-05-10 11:57:02

标签: linux events input mouse move

使用evtest工具测试输入事件时,无法获取鼠标移动事件。

我只得到三个鼠标事件:

left click event: type = EV_KEY, code = 272 (LeftBtn), value=1/0

right click event: type = EV_KEY, code = 273 (RightBtn), value = 1/0

mouse wheel event: type = EV_REL, code = 8 (Wheel), value = -1

无鼠标移动事件。那么我的鼠标移动事件以及如何捕获它?

ps:在安装了virtualBox-addition的VirtualBox-4中测试Ubuntu 11.04Gentoo

2 个答案:

答案 0 :(得分:6)

如果不是在嵌入式Linux系统上,我更喜欢使用 input-utils 工具而不是 evtest (如果我在Android上,我使用{{1} }和cat /proc/bus/input/devices

通过以下方式安装input-utils:

getevent

列出我的所有输入设备

$ sudo apt-get install input-utils

然后我在笔记本电脑的轨迹点上读取事件(不要忘记在启动输入事件后移动它)

$ sudo lsinput
/dev/input/event0
   bustype : BUS_HOST
   vendor  : 0x0
   product : 0x5
   version : 0
   name    : "Lid Switch"
..
..
   phys    : "isa0060/serio1/input0"
   bits ev : EV_SYN EV_KEY EV_ABS    
/dev/input/event12
   bustype : BUS_I8042
   vendor  : 0x2
   product : 0xa
   version : 0
   name    : "TPPS/2 IBM TrackPoint"
   phys    : "synaptics-pt/serio0/input0"
   bits ev : EV_SYN EV_KEY EV_REL

答案 1 :(得分:0)

你有没有尝试过移动鼠标而不是evtest? 我移动鼠标时没有得到任何关于/ dev / input / event *的信息,但是在/ dev / input / by-path / platform-i8042-serio-1-event-mouse上做了什么。当我使用/ dev / input / by-path / platform-i8042-serio-1-event-mouse并在Synergy上移动鼠标时,我也没有得到任何东西,我必须物理移动鼠标。

萨克