|
发表于 2004-6-26 15:17:04
|
显示全部楼层
回复: T40上装FreeBSD 5.2.1,XServer中地屏幕和显卡如何配置?
最初由 shtwang 发表
1. 从显卡的列表中找不到ATI Radeon 7500呀;
2. 屏幕的刷新频率怎么配置?什么值比较合适?
希望大伙能够指点一下,谢谢!
以下是我的XF86Config中显示的部分
我的LCD是1400x1050的,如果你的是1024x768的话,你将
Modes "1400x1050"
# Modes "1024x768"
改成
# Modes "1400x1050"
Modes "1024x768"
即可。
[PHP]# **********************************************************************
# Monitor section
# **********************************************************************
# Any number of monitor sections may be present
Section "Monitor"
# The identifier line must be present.
Identifier "IBM SXGA+ TFT"
HorizSync 31.5 - 90
VertRefresh 60-75
Gamma 2.2
Option "DPMS"
EndSection
# **********************************************************************
# Graphics device section
# **********************************************************************
Section "Device"
Identifier "ATI Mobility Radeon 7500"
Driver "radeon"
# Chipset "ati"
# VideoRam 16
Option "AGPMode" "4"
Option "AGPFastWrite" "True"
Option "EnablePageFlip" "True"
EndSection
# **********************************************************************
# Screen sections.
# **********************************************************************
Section "Screen"
Identifier "IBM TFT Screen"
Device "ATI Mobility Radeon 7500"
Monitor "IBM SXGA+ TFT"
# The favoured Depth and/or Bpp may be specified here
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1400x1050"
# Modes "1024x768"
EndSubSection
EndSection[/PHP] |
|