在/etc/X11 目录下有一个xorg.conf文件,鼠标的配置就是在这里了。在这个目录下,你还会发现另一个文件,叫 xorg.conf.BeforeVMwareToolsInstall,看这个文件名和内容,应该是vmware-tools装完后,对 xorg.conf修改了,所以做了一个备份,进后入,看鼠标配置的几个参数,有一个明显是不同的,配置如下:
Section "InputDevice" Identifier "Mouse0"
Driver "mouse" Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes" EndSection
这是备份里的配置,而xorg.conf的配置是:
Section "InputDevice" Identifier "Mouse0"
Driver "mouse" Option "Protocol" "ps/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
EndSection
那个ps/2改成IMPS/2,然后,重启了一下机器。
鼠标滚轮可以用了。