QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 909|回复: 4

intel 810与linux

[复制链接]
发表于 2004-5-2 11:07:25 | 显示全部楼层 |阅读模式
我的主板是intel 810的.
装好了flag 4.0桌面版之后
也进入了xwindows
我打算配置其显示效果.
可当在系统提示下,我重起机子

糟糕的事实发生,只能进入命令模式了.

后来在网上看到了文章,说linux810集成的显卡不好,
也看了解决方法,但对我来说都是太难懂

哪位好心人能教我怎么去设定主板显卡的驱动(主板光盘里有显卡linux驱动程序)[
发表于 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]
回复

使用道具 举报

 楼主| 发表于 2004-5-2 20:52:34 | 显示全部楼层
我曾在pchome的linux讨论区的精华文章里看到linux的教程(上)介绍.
里面说linux对大多数硬件的兼容性都很好,能很好的发现并安装驱动.但对810兼容性不是很好,

然后我上百度里"intel linux 810"搜索,然后看到一些文章讲述如何安装主板驱动显卡驱动
看得我一头雾水^^^^郁闷死.

我的红旗自动检测的结果也是810显卡不可用.
真的没法子,难道这跟linux版本有关的吗?
主要是我的linux知识极缺乏..
唯一能做的就是重新安装一次红旗了.
回复

使用道具 举报

发表于 2004-6-2 13:03:41 | 显示全部楼层
改用RH9就可以了,不然就到Intel下810的补丁吧。
回复

使用道具 举报

发表于 2004-6-2 15:29:00 | 显示全部楼层
很郁闷的告诉你,我的就是810,我在rh8,fc1下好好的!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-7 15:41 , Processed in 0.037903 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表