redhat5 解析度設定和重新整理頻率

tonykorn97發表於2010-12-07
redhat5 解析度設定


用kvm連線的伺服器,伺服器安裝redhat5系統,文字介面可以啟動,圖形介面啟動的時候黑屏,故障原因應該是kvm支援的解析度沒有那麼大,調整系統分別率。[@more@]

1, 用Xort -configure重新生成配置檔案。
[root@tonykorn97 X11]# Xorg -configure

X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: Linux 2.6.9-67.0.7.ELsmp x86_64 Red Hat, Inc.
Current Operating System: Linux tonykorn97 2.6.18-92.el5 #1 SMP Tue Apr 29 13:16:15 EDT 2008 x86_64
Build Date: 02 April 2008
Build ID: xorg-x11-server 1.1.1-48.41.el5
Before reporting problems, check
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Mon Nov 15 15:42:36 2010
List of video drivers:
s3virge
i810
dummy
ati
mga
tdfx
radeon_tp
atimisc
sisusb
siliconmotion
cirrus
savage
voodoo
intel
r128
s3
radeon
trident
ati_tp
ast
via
sis
nv
vmware
fbdev
vesa
vga
(++) Using config file: "/root/xorg.conf.new"


Xorg detected your mouse at device /dev/input/mice.
Please check your config if the mouse is still not
operational, as by default Xorg tries to autodetect
the protocol.

Your xorg.conf file is /root/xorg.conf.new

To test the server, run 'X -config /root/xorg.conf.new'

[root@tonykorn97 X11]#



2, 複製配置檔案。
[root@tonykorn97 X11]# mv /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
[root@tonykorn97 X11]# cp /root/xorg.conf.new /etc/X11/xorg.conf
[root@tonykorn97 X11]#


3, 用startx啟動系統。

4, 用system-config-display重新修改解析度



從其他機器複製xorg.conf檔案需要修改下面2個部分
1,由於64和32機器的不同,需要修改:
ModulePath "/usr/lib/xorg/modules" 或者 ModulePath "/usr/lib64/xorg/modules"

2,顯示卡的不同需要修改:
Identifier "Card0"
Driver "ati"
VendorName "ATI Technologies Inc"
BoardName "Radeon RV100 QY [Radeon 7000/VE]"
BusID "PCI:11:13:0"


修改完畢後可以用kvm啟動,直接啟動還是有問題。

用kvm啟動的時候顯示解析度為:1024*768@85MHZ。應該是重新整理頻率的問題。


解決辦法:
----------------------------------------
很多同志因為無法提高螢幕重新整理率而放棄使用linux,實在是很遺憾。

這個辦法不依賴任何gnome或者是kde,你在命令列下面就就能解決,適用於任何視窗管理器,我用的是Icewm,當然沒有問題,呵呵,下面的就是具體 解決辦法首先在終端下面執行你gtf命令,引數是你想要的解析度和重新整理率,比如我的

解析度為1024x768,重新整理率想要85,那麼我就可以這樣用: gtf 1024 768 85
結果如下:

# 1024x768 @ 85.00 Hz (GTF) hsync: 68.60 kHz; pclk: 94.39 MHz
Modeline "1024x768_85.00" 94.39 1024 1088 1200 1376 768 769 772 807 -HSync +Vsync

這樣你就可以修改你的/etc/X11/XF86Config-4的顯示器部分為:

Section "Monitor"
Identifier "Generic Monitor"
# 1024x768 @ 75.00 Hz (GTF) hsync: 60.15 kHz; pclk: 81.80 MHz
Modeline "1024x768_85.00" 94.39 1024 1088 1200 1376 768 769 772 807 -HSync +Vsync
Option "DPMS"
EndSection

啟動X,你就可以看到效果了,如果X啟動不了,檢視一下原因,有可能是你的解析度或重新整理率調的太高了
另外在X下你也可以透過xvidtune來進行微調




例如:
[root@tonykorn97 X11]# gtf 1024 768 60

# 1024x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 64.11 MHz
Modeline "1024x768_60.00" 64.11 1024 1080 1184 1344 768 769 772 795 -HSync +Vsync

[root@tonykorn97 X11]#


修改:xorg.conf
-------------------------------------------------------------------------
Section "Monitor"

#DisplaySize 380 290 # mm
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
Identifier "Monitor0"
VendorName "KVM"
ModelName " Monitor"
### Comment all HorizSync and VertSync values to use DDC:
### HorizSync 31.5 - 37.9
### VertRefresh 50.0 - 70.0

# 1024x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 64.11 MHz
Modeline "1024x768_60.00" 64.11 1024 1080 1184 1344 768 769 772 795 -HSync +Vsync
Option "DPMS"
EndSection






來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/312079/viewspace-1042745/,如需轉載,請註明出處,否則將追究法律責任。

相關文章