VMware中安装Ubuntu后鼠标滚轮问题解决
在Windows下安装了一个虚拟机Vmware,但是鼠标的滚轮不能使用,于是查找一下,找到了解决方法如下:首先,打开xorg.conf文件,sudo gedit /etc/X11/xorg.conf然后找到以下段落:Section "InputDevice" Identifier "Configured Mouse" Driver"vmmouse" Option"CorePointer"
·
在Windows下安装了一个虚拟机Vmware,但是鼠标的滚轮不能使用,于是查找一下,找到了解决方法如下:
首先,打开xorg.conf文件,
sudo gedit /etc/X11/xorg.conf
然后找到以下段落:
首先,打开xorg.conf文件,
sudo gedit /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 "Protocol" "ImPS/2"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
EndSection
更多推荐
已为社区贡献2条内容
所有评论(0)