|
楼主 |
发表于 2004-11-1 14:29:32
|
显示全部楼层
多谢斑竹提醒,找到了!
-----------------------------------------
1.修改vi /etc/X11/XF86Config文件,
修改其中的
Section "ServerLayout"
添加
InputDevice "Mouse1" "SendCoreEvents"
在最后
在
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "rotocol" "IMPS/2"
Option "Device" "/dev/psaux"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
#MouseName "Generic - 3 Button Mouse (PS/2)"
EndSection
之后插入如下整段:
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "rotocol" "IMPS/2"
Option "Device" "/dev/psaux"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection
2.修改/etc/rc.d/rc.local文件,在其最后加入
/sbin/modprobe hid
重新启动Linux |
|