CentOS调整桌面分辨率

1 一般完全安装完系统后,能进入图形界面,证明驱程是没有问题的了。
2 查看你的显卡信息:/etc/x11/xorg.conf(我的系统是fedola5,不同的系统你可以看后缀名为conf的文件)
3 修改这个文件的参数。(权限必须为root,你可以命令来修改这个文件)
sudo -s -H
gedit /etc/x11/xorg.conf
4 找到这段代码,修改里面的参数(你可以复制这段代码,注意不要搞错了喔)
主要是修改Horizsync,将后面的参数设置到100
刷新率设置为85.0,反正你要多少就设置多少,我这里没有设置范围。一般85屏幕就不闪耀了。
后面设置你要分辨率,一般有800x600和1024x768,注意是x不是乘号。 

### Comment all HorizSync and VertSync values to use DDC:
HorizSync 31.5 - 100.0
VertRefresh 85.0 - 85.0
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "r128"
VendorName "Videocard vendor"
BoardName "ATI Technologies Inc Rage 128 PF/PRO AGP 4x TMDS"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 16
Modes "800x600" "640x480"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
5 重启系统,进入后再从桌面-》首选项-》屏幕分辨率,就可以像xp一样调节你要的设置拉!!

你可能感兴趣的:(centos,XP,图形)