`
hideto
  • 浏览: 2650846 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

宽屏本本的分辨率问题解决

阅读更多
装好Ubuntu后系统不能自动识别1280x800的分辨率
同事说装个915resolution包就可以了
结果我装了后还是不行
运行:
sudo 915resolution 38 1280 800 24

报如下错误:
Intel 800/900 Series VBIOS Hack : version 0.5.2
NVIDIA chipset detected.  915resolution only works with Intel 800/900 series graphic chipsets.

原来915resolution只支持Intel系列的显卡,而我的本本是nVidia的显卡,所以915resolution不行啦。

又Google了一下,原来改一下xorg.conf即可:
sudo vim /etc/X11/xorg.conf,
将如下代码:
    SubSection     "Display"
        Depth       24
        Modes       "1024x768" "800x600" "640x480"
    EndSubSection

改为:
    SubSection     "Display"
        Depth       24
        Modes      "1280x800" "1024x768" "800x600" "640x480"
    EndSubSection

即将Depth为24的SubSection的Modes前加一个"1280x800"即可,DefaultDepth为24。
保存退出后运行sudo /etc/init.d/gdm restart或者Ctrl+Alt+Backspace重启GNOME.
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics