在OpenBSD4.2安装显卡驱动

2009-05-13 10:37:36来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折


我的显卡是Intel 965,已经从官方网站上看到,已经支持了,模块是i810,安装步骤如下:
1, 下载src.tar.gz,sys.tar.gz,xenocara.tar.gz,解压到 /usr/src :
    # tar -zxvf srs.tar.gz -C /usr/src
  # tar -zxvf sys.tar.gz -C /usr/src
  # tar -zxvf xenocara.tar.gz -C /usr/src
2. 安装:
  # cd /usr/src/xenocara/driver/xf86-video-intel
  # rm -f obj
  # make -f Makefile.bsd-wrapper cleandir
  # mkdir XOBJDIR
  # make -f Makefile.bsd-wrapper obj
  # make -f Makefile.bsd-wrapper build
安装后从man手册页已经看到了:
  # man i810
I810(4)                                                   I810(4)
NAME
       i810 - Intel 8xx integrated graphics chipsets
SYNOPSIS
       Section "Device"
         Identifier "devname"
         Driver "i810"
         ...
       EndSection
DESCRIPTION
       i810  is  an  Xorg  driver  for  Intel integrated graphics
       chipsets.  The driver supports depths 8, 15,  16  and  24.
       All  visual  types  are  supported  in  depth  8.  For the
       i810/i815 other depths support the TrueColor  and  Direct-
       Color  visuals.   For  the i830M and later, only the True-
       Color visual is supported for depths greater than 8.   The
       driver  supports  hardware  accelerated  3D via the Direct
       Rendering Infrastructure (DRI), but only in depth  16  for
       the i810/i815 and depths 16 and 24 for the 830M and later.
SUPPORTED HARDWARE
       i810 supports the i810, i810-DC100,  i810e,  i815,  i830M,
       845G,  852GM, 855GM, 865G, 915G, 915GM, 945G, 945GM, 965G,
       965Q and 946GZ chipsets.
....


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/42287/showart_418867.html

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:导入模块的方法

下一篇:了解何时去使用 self 和 __init__