VMware 下 Ubuntu 界面分辨率过高问题解决方法 在虚拟机中安装 Ubuntu 后,登录界面的分辨率一直过高,导致每次输入登录名和密码都要拖动,很是不方便。解决这个问题的方法是通过修改 xorg.conf 文件来实现的。在 /ect/X11/ 下,发现多了一个 xorg.conf.BeforeVMwareToolsInstall 文件,看来是由于安装 VMwareTools 修改了配置文件。 原始的 xorg.conf 文件中,Section "Screen" 部分的内容如下: ``` Section "Screen" Identifier "Default Screen" Device "VMware Inc [VMware SVGA II] PCI Display Adapter" Monitor "Generic Monitor" DefaultDepth 24 EndSection ``` 而安装 VMwareTools 后,这部分内容被修改为: ``` Section "Screen" Identifier "Default Screen" Device "VMware SVGA" Monitor "vmware" # Don't specify DefaultColorDepth unless you know what you're # doing. It will override the driver's preferences which can # cause the X server not to run if the host doesn't support the # depth. Subsection "Display" # VGA mode: better left untouched Depth 4 Modes "640x480" ViewPort 0 0 EndSubsection Subsection "Display" Depth 8 Modes "1024x768" ViewPort 0 0 EndSubsection Subsection "Display" Depth 15 Modes "1024x768" ViewPort 0 0 EndSubsection Subsection "Display" Depth 16 Modes "1024x768" ViewPort 0 0 EndSubsection Subsection "Display" Depth 24 Modes "1024x768" ViewPort 0 0 EndSubsection EndSection ``` 可以看到,在 Section "Screen" 中多了几个子段 Subsection "Display",这几个子段中列举出了几组分辨率和颜色深度。我们可以通过修改 xorg.conf 文件来解决分辨率过高的问题。方法是去掉原来的默认的颜色深度,增加几组子段 Subsection "Display",在子段中,列举出相应的 Modes 模式(也就是分辨率),Depth 颜色深度,以及 ViewPort(应该是视图顶点,为 0 0),需要注意的是:这几组中的分辨率应该为你要改成的分辨率,只是其颜色深度不同而已。 此外,安装完 VMwareTools 后,鼠标的滚轮突然不能使用,原来配置文件中关于鼠标的配置也被修改。解决方法是将 Section "InputDevice" 部分的 Option "Protocol" "ps/2" 改为 "ImPS/2",然后保存并重启即可。 通过修改 xorg.conf 文件和鼠标配置文件,可以解决 VMware 下 Ubuntu 界面分辨率过高问题和鼠标滚轮不能使用的问题。
- 风神狄洛2013-05-07从来没被这么坑过,网上随便一搜索一大箩筐,并且解决不了问题的文档。
- 粉丝: 0
- 资源: 4
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助