ati开源驱动安装方法

来源:互联网 发布:手机照片恢复软件 编辑:程序博客网 时间:2024/06/06 00:11

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 driverwget

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