VM下linux鼠标滚轮配置
重拷贝了一个fedra系统,发现鼠标滚轮不能用了,遂研究了一下,就加了两条语句,很管用。如下:
#gedit /usr/etc/X11/Xorg.conf
Section "InputDevice"
Identifier "VMMouse"
Driver "vmmouse"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "yes"
用ROOT登录VM,修改为:
Section "InputDevice"
Identifier "VMMouse"
Driver "vmmouse"
Option "Device" "/dev/input/mice"
Option "Protocol" "IMPS/2"
Option "Emulate3Buttons" "yes"
Option "ZAxisMapping" "4 5"
重新启动虚拟机后,便OK了!
用户174379 2009-6-16 16:16