欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

宽屏本本的分辨率问题解决 博客分类: Linux UbuntuvimGoogle 

程序员文章站 2024-02-22 17:40:46
...
装好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.
相关标签: Ubuntu vim Google