原创作者: hideto   阅读:2298次   评论:1条   更新时间:2011-05-26    
装好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.
评论 共 1 条 请登录后发表评论
1 楼 ggwang 2009-06-26 19:43
sudo /etc/init.d/gdm restart重启后中途停顿在命令行闪烁,然后只能三键重启,窄屏不改!

发表评论

您还没有登录,请您登录后再发表评论

文章信息

  • Arbow在2007-04-05创建
  • Arbow在2011-05-26更新
Global site tag (gtag.js) - Google Analytics