问题
Ubuntu…除了Default VI之外 ,这是我的另一个问题。 我的鼠标滚轮在Ubuntu8.04中不起作用。 但是我在vmware中安装了Ubuntu,但是我不认为这是vmware引起的。
解
在这里,我可以找到有关鼠标滚轮故障问题的一些有用信息,请查看Ubuntu鼠标配置官方网站。 https://help.ubuntu.com/community/ManyButtonsMouseHowto
在研究了以上文章之后,我在这里提供了一些步骤,以在VMware下的Ubuntu中启用鼠标滚轮滚动。
1)打开终端
2)发出命令“ sudo gedit /etc/X11/xorg.conf”
sudo gedit /etc/X11/xorg.conf
3)修改/etc/X11/xorg.conf,更改以下部分
从
Section "InputDevice"
Identifier "Configured Mouse"
Driver "vmmouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
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
4)保存
5)按Ctrl + Alt + Backspace重启Ubuntu X窗口(如果Ctrl + Alt + Backspac不起作用,只需正常重启Ubuntu)
6)再次登录,鼠标滚轮现在应该可以在Ubuntu中使用
7)完成
如果您想了解有关Ubuntu中鼠标滚轮滚动配置的更多详细信息,请参考Ubuntu社区 。
翻译自: https://mkyong.com/linux/how-to-enable-mouse-wheel-scrolling-in-ubuntu-vmware/