在ubantu 8.4上 让鼠标的滚轮工作

在console下

sudo gedit

 

打开 /etc/X11/xorg.conf

找到:

Section "InputDevice"
Identifier "Configured Mouse"
Driver "vmmouse"
[..  ..]
EndSection

替代成:

Section "InputDevice"
Identifier "Configured Mouse"
Driver "vmmouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
EndSection

保存。关闭所有的程序。

按 Ctrl+Alt+Backspace重起。

原文地址:https://www.cnblogs.com/by1455/p/1305474.html