Posted on 2010-04-15 11:59
shenglianfeng 阅读(1193)
评论(0) 编辑 收藏 引用 所属分类:
Linux
环境: VMware - RHEL 5.4
可能很多朋友装好后发现分辨率只有800x600和600x480选项.
网上普遍提供了一种方法:即修改/etc/X11/xorg.conf文件.
1
2 Section "Screen"
3 Identifier "Screen0"
4 Device "Videocard0"
5 DefaultDepth 24
6 SubSection "Display"
7 Viewport 0 0
8 Depth 24
9 # 添加Modes, 后接你需要的分辨率
10 Modes 1280x800
11 EndSubSection
12 EndSection
无效.
不过发现另一种解决方法:
System -> Administration -> Display, 在Hardware选项卡中可以配置显示器, 其中就有你需要的分辨率.
修改完后重启Xwindow, Display中就可以使用新的分辨率了.
此时可以再看下xorg.conf文件:
Section "Monitor"
Identifier "Monitor0"
ModelName "LCD Panel 1280x800"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 31.5 - 50.0
VertRefresh 56.0 - 65.0
Option "dpms"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "800x600" "640x480"
EndSubSection
EndSection