今日,安装好Debian系统后正在调试环境,忽然发觉鼠标滚轮没有作用,上网查询资料后得知,需修改/etc/X11/xorg.conf文件,修改内容如下:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
修改两项
第一,Protocol修改为ImPS/2;
第二,添加ZAxisMapping项,值为"4 5",保存后重新启动,鼠标可以正常使用。