原创作者: hideto
阅读:2351次
评论:1条
更新时间:2011-05-26
装好Ubuntu后系统不能自动识别1280x800的分辨率
同事说装个915resolution包就可以了
结果我装了后还是不行
运行:
报如下错误:
原来915resolution只支持Intel系列的显卡,而我的本本是nVidia的显卡,所以915resolution不行啦。
又Google了一下,原来改一下xorg.conf即可:
sudo vim /etc/X11/xorg.conf,
将如下代码:
改为:
即将Depth为24的SubSection的Modes前加一个"1280x800"即可,DefaultDepth为24。
保存退出后运行sudo /etc/init.d/gdm restart或者Ctrl+Alt+Backspace重启GNOME.
同事说装个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 楼 ggwang 2009-06-26 19:43