|
|
发表于 2007-10-11 15:35:08
|
显示全部楼层
Post by ProgramFan
用 F7 应该没问题
我用的也是Fedora core 7加IBMT23, 但是在没有修改XORG.CONF前,只有800*600和640*480两种模式, 后来用GTF 1024 768 75 得到的值修改XORG.CONF,结果成功了,并且出现了多种模式。
我原来的XORG为:
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "savage"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
用GTF 1024 768 75 得到以下值:
[csw@csw ~]$ gtf 1024 768 75
# 1024x768 @ 75.00 Hz (GTF) hsync: 60.15 kHz; pclk: 81.80 MHz
Modeline "1024x768_75.00" 81.80 1024 1080 1192 1360 768 769 772 802 -HSync +Vsync
修改后的XORG为:
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "savage"
EndSection
Section "Monitor"
Identifier "Generic Monitor"
HorizSync 28.0-81.0
VertRefresh 43.0-80.0
Option "dpms"
Modeline "1024*768_75.00"
81.8 1024 1080 1192 1360 768 769 772 802
-HSync +Vsync
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
保存重启后,分辨率自动成为1024*768且出现了多种模式供选择,但是显示器类型却变成了“Unkown Monitor". 由于本人也是第一次使用linux系统, 还请高手帮忙解决显示器类型这个问题!! |
|