Configuring the fglrx driver for ATI graphics chips in Ubuntu 7.10
Created by: Bill Giannikos,Last modification on Thu 28 of Feb, 2008 [05:33 UTC]
If the guide here does not cover what you were looking for you can view the guides section for coverage of other distributions.
Author
Bill Giannikos (bill2 at giannikos.com.au)www.billgiannikos.com
Introduction
This guide will help you configure the proprietary fglrx driver under Ubuntu 7.10. I will not be covering the open source radeon driver included with Xorg because its configuration is normally handled automatically by most Linux distributions. We also wont be covering the newly released readeonhd driver as these are still in an early stage.Licensing Issues
ATI/AMD provide their own license for their driver. You will need to read and accept this license before proceeding.Notes
While this guide is mainly focused to laptop users there isn't any difference for desktop users.Prerequisites
We will be using 'nano' as our text editor of choice but you can use whatever you wish.You should run a full update for your installation of Ubuntu to ensure you have all the latest packages installed.
Installing ATI's fglrx driver from within the GUI
Ubuntu 7.10 includes the fglrx driver which makes installation quite easy. Here is how:1. Launch the "Restricted Devices Manager" program from the menu System -> Administration -> Restricted Devices Manager
2. Enable to "ATI accelerated graphics driver" driver
3. Reboot
Like many things in Ubuntu this is nice and easy.
Installing ATI's fglrx driver without the GUI
If you are unable to launch the GUI and are forced to install the driver from the text console follow these instructions.1. Type in the following:
sudo apt-get install xorg-driver-fglrx linux-restricted-modules
2. Now edit the /etc/X11/xorg.conf file. With nano type in:
sudo nano -w /etc/X11/xorg.conf
3. Find the line labeled "Driver" in the "Device" section. It should currently say something like 'Driver "radeon"' or 'Driver "vesa"'. Change this to:
Driver "fglrx"
4. Now at the bottom of this file add the following:
Section "Extensions"
Option "Composite" "disable"
EndSection
Option "Composite" "disable"
EndSection
5. Save the file. In nano you press Ctrl-X, answer yes to the "Save modified buffer" question and then press enter on the file name to write.
6. Reboot the computer and the fglrx driver should load.

Comments
LIVE CD
Re: LIVE CD
After puttting in sudo apt-get install linux-restricted-modules xorg-driver-fglrx i get
E: Couldn't find package linux-restricted-modules
Any ideas?
Cheers
Re:
deb http://archive.ubuntu.com/ubuntu gutsy-updates restricted
deb http://archive.ubuntu.com/ubuntu gutsy-security restricted
and then type in:
sudo apt-get install linux-restricted-modules xorg-driver-fglrx
Let me know if it works, I'll add extra steps to the guide.