|
发表于 2004-5-2 13:19:45
|
显示全部楼层
后来在网上看到了文章,说linux810集成的显卡不好,
谁说的? 我用的就是
[code:1]
dmesg | grep 810
agpgart: Detected an Intel i810 Chipset.
[/code:1]
flag 没有用过.
说一个基本的配置方式:
运行
xf86cfg #<--- 让它自动检测,目的是让它编写一份 XF86Config-4 .
屏幕闪几下后,看到图形了就可以设置了, 显卡填 i810
选择 quit , 保存 XF86Config-4 到 / 目录下,
cd /etc/X11/
cp XF86Config-4 XF86Config-4.sys
cp /XF86Config-4 XF86Config-4
如果你系统使用的是 XF86Config , 将 XF86Config-4 改个名字。
修改 /etc/XF86Config-4 文件, 主要设置 其中的 Section "Screen"
我设置的是 24bit, 1024x768.
这是我的 XF86Config-4 文件 on Debian
[code:1]
Section "ServerLayout"
Identifier "XFree86 Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
ModulePath "/usr/X11R6/lib/modules"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
#FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
#FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/CID/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection
Section "Module"
Load "record"
Load "extmod"
Load "dbe"
Load "dri"
#Load "glx"
Load "xtrap"
#Load "type1"
#Load "speedo"
#Load "freetype"
Load "xtt"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
#Option "Protocol" "IMPS/2"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/psaux"
Option "Buttons" "5"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection
Section "Monitor"
DisplaySize 280 210 # mm
Identifier "Monitor0"
VendorName "AOC"
ModelName "5E"
HorizSync 30 - 50
VertRefresh 50 - 120
Option "DPMS"
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel" # [<bool>]
#Option "SWcursor" # [<bool>]
#Option "ColorKey" # <i>
#Option "CacheLines" # <i>
#Option "Dac6Bit" # [<bool>]
#Option "DRI" # [<bool>]
#Option "NoDDC" # [<bool>]
#Option "ShowCache" # [<bool>]
#Option "XvMCSurfaces" # <i>
Identifier "Card0"
Driver "i810"
VendorName "Intel Corp."
BoardName "82810 CGC [Chipset Graphics Controller]"
ChipSet "i810"
BusID "PCI:0:1:0"
VideoRam 16384
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 1
EndSubSection
SubSection "Display"
Depth 4
EndSubSection
SubSection "Display"
Depth 8
EndSubSection
SubSection "Display"
Depth 15
EndSubSection
SubSection "Display"
Depth 16
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "800x600"
EndSubSection
EndSection
[/code:1] |
|