You can also just remove the packages with apt-get remove just like any normal .deb package. Once you uninstall the packages you need to restore xorg.conf:
Code:
sudo dpkg-reconfigure xserver-xorg
Answer the questions and edit the new file so the system loads the radeon driver:
Code:
sudo nano /etc/X11/xorg.conf
#find the Device section and add the line:
Driver "radeon"
Reboot and now you should have a working desktop (Xv, exa accel., no 3D). Now you can try to install fglrx again.
Check it:
1.- Got to ATI's website and donwload the driver. The same installer works for both 32bit and 64bit systems.
2.- Open a terminal and move into the directory where you saved the driver in:
Code:
cd /<location of driver>
3.- Install needed dependancies:
Code:
sudo apt-get install build-essential cdbs fakeroot dh-make debhelper debconf libstdc++5 dkms
#install ia32-libs if on a 64bit system
4.- Build packages:
Code:
sudo sh <name of .run file> --buildpkg
#this will generate several packages inside the source directory
5.- Install packages:
Code:
sudo dpkg -i *.deb
#this will install ALL .deb files inside the directory, so make sure you don't have anything else aside from the driver
#if you are then asked about overwriting files, just tell it to go ahead (type "Y" when prompted)
6.- Initialize the driver:
Code:
cd
sudo aticonfig --initial
7.- Reboot