|

楼主 |
发表于 2007-11-18 11:56:31
|
显示全部楼层
昨天实验了下。解决问题了。
使用 evdev 驱动。
鼠标 配置 在 /etc/X11/xorg.conf 中配置如下
[PHP]
Section "InputDevice"
Identifier "Configured Mouse"
Driver "evdev"
Option "Name" "ImPS/2 Synaptics TouchPad"
Option " hys" "isa0060/serio4/input0"
#Option "Device" "/dev/input/mouse1"
Option "Device" "/dev/input/by-path/platform-i8042-serio-4-event-mouse"
#Option "Buttons" "5"
Option " rotocol" "Auto"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "false"
EndSection
Section "InputDevice"
Identifier "Logitech Mouse"
Driver "evdev"
Option "Name" "Logitech USB Optical Mouse"
Option "SendCoreEvents" "true"
#Option "Device" "/dev/input/event1"
Option "Device" "/dev/input/by-id/usb-Logitech_USB_Optical_Mouse-event-mouse"
#Option "Buttons" "7"
Option "ZAxisMapping" "6 7"
Option "Resolution" "1000"
Option "Emulate3Buttons" "false"
EndSection
[/PHP] |
|