在 VMWare 中安装了 Ubuntu Linux 8.04 之后,鼠标不能用了,十分郁闷,还以为是自己的安装步骤有问题导致,经过 Google 之后,才发现,很多人都发现和我一样的问题,原来只要按照如下的方法,就OK 了。
修改 /etc/X11/xorg.conf 文件中 mouse 的配置如下即可:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "vmmouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
EndSection
本文介绍了一种在VMWare环境下解决Ubuntu Linux 8.04鼠标无法使用的问题的方法。通过修改/etc/X11/xorg.conf文件中的鼠标配置,具体设置Driver为vmmouse并调整相关选项,可以有效解决鼠标不响应的情况。
2453

被折叠的 条评论
为什么被折叠?



