LinuxTOY 是一个致力于提供 Linux 相关资讯的专题站点。如果您发现了好用好玩的 Linux 东东并愿意发扬自由、分享的精神,可以点击顶部导航 Contact 按钮进行投稿。

Related entries

ATI 开源驱动 6.9.0 发布

ATI 开源驱动的新版本 6.9.0 已经发布。该版本除了修正了许多 bug 外,也添加了一些新特性:针对 r1xx/r2xx 芯片的显卡改进了 EXA 渲染支持、为 r3xx/r4xx/r5xx 系列显卡添加了 EXA 渲染支持、以及加入了 Xv 的视频纹理支持 (r1xx-r5xx)。

ATI

有关此版本更加详细的更改信息,可以查看其发布公告

你可以从这里获取其源代码

[via Linuxsir]

署名 • 注明出处 • 非商业性使用

7 Comments

  1. 1 安德 Commented @ 2008-06-27 12:45 pmReply to this comment

    这么快啊.我的arch 6.8装不上,有人说是内核版本问题,不知道6.9行不行

  2. 2 luojie-dune Commented @ 2008-06-27 1:12 pmReply to this comment

    ATI的驱动会超越Nvidia的,尤其是在非主流GNU/Linux发行版里。

  3. 3 lh Commented @ 2008-06-27 2:19 pmReply to this comment

    现在用git版本的很不错,总不会比稳定版本慢把

  4. 4 獨立的豬 Commented @ 2008-06-27 4:41 pmReply to this comment

    我用6.80版的时候不能玩smc,启动不了

  5. 5 fed Commented @ 2008-06-28 11:22 pmReply to this comment

    这个玩游戏怎样,如果对游戏支持不好就是废

  6. 6 hongmop Commented @ 2008-06-30 12:05 pmReply to this comment

    不知 怎么安装

  7. 7 lvscar Commented @ 2008-06-30 7:48 pmReply to this comment

    ## Install common build tools like gcc
    sudo apt-get -y install build-essential
    ## Install dependencies to build the driver
    sudo apt-get -y build-dep xserver-xorg-video-ati
    ## Remove current ati driver
    sudo apt-get -y purge xserver-xorg-video-ati
    ## Download the newest driver
    wget http://ftp.x.org/pub/individual/driv…-6.9.0.tar.bz2
    ## Extract the driver archive
    tar xvjf xf86-video-ati-6.9.0.tar.bz2
    ## Go to the drivers’ directory
    cd xf86-video-ati/
    ## Configure the drivers’ makefiles
    ./configure –prefix=/usr
    ## Build the driver
    make
    ## Install the driver
    sudo make install