Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I installed ati-driver-installer-11-9-x86.x86_64.run downloaded from the ATI Website.

However I installed the generic version instead of building a distribution specific installer.

Now I have the gnome-shell graphic glitches that are associated with having the old Fglrx drivers installed.

How can I remove these drivers? They do not show up in the additional drivers dialog, and I cannot install any other drivers till these are removed.

share|improve this question

2 Answers

up vote 11 down vote accepted

Run both this commands:

sudo sh /usr/share/ati/fglrx-uninstall.sh 
sudo apt-get remove --purge fglrx fglrx_* fglrx-amdcccle* fglrx-dev*

Plus refer to this site: ATI - Ubuntu Oneiric Installation Guide

share|improve this answer
   
after running the first one I get sh: Can't open /usr/share/ati/fglrx-uninstall.sh should I still run the second command? – Hailwood Nov 13 '11 at 0:19
"Skip the first command if it does not exist". As stated in the link I sent you. – bioShark Nov 13 '11 at 0:21
So yes...just the second command is needed. Did it work? – bioShark Nov 13 '11 at 0:32
Thank you very muchly :D – Hailwood Nov 13 '11 at 0:47
The first command also didn't work for me but the second worked like a champ after removing the ` from the end of the command. Ty for the tip bioshark – user37314 Dec 9 '11 at 20:19
show 3 more comments

Removing Catalyst/fglrx

The uninstall script in the first command will only exist if you downloaded the drivers and installed them directly (rather than building packages as this guide does). Skip the first command if it does not exist.

sudo sh /usr/share/ati/fglrx-uninstall.sh
sudo apt-get remove --purge fglrx fglrx_* fglrx-amdcccle* fglrx-dev*

If you plan on using open-source drivers, you will need to reinstall some packages because Catalyst overwrites or diverts some key 3D libraries with proprietary versions. For more information on this issue, see this Ubuntu wiki page

sudo apt-get remove --purge xserver-xorg-video-ati xserver-xorg-video-radeon
sudo apt-get install xserver-xorg-video-ati
sudo apt-get install --reinstall libgl1-mesa-glx libgl1-mesa-dri xserver-xorg-core
sudo mv /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
sudo rm -rf /etc/ati

If you receive $ E: Internal Error, No file name for libgl1-mesa-dri Change the third command above to: sudo apt-get install --reinstall libgl1-mesa-glx:i386 libgl1-mesa-glx:amd64 libgl1-mesa-dri:i386 libgl1-mesa-dri:amd64 xserver-xorg-core

After you finished all, reboot, then install the legacy 12.6 Driver, following the same procedure in the same Wiki: http://wiki.cchtml.com/index.php/Ubuntu_Precise_Installation_Guide#Installing_Catalyst_Manually_.28from_AMD.2FATI.27s_site.29

Start from "Before you start" section, and skip the "wget" download, instead use the 12.6 Legacy you have downloaded. All the rest the same. It will eventually work !

After you installed, do not forget to:

sudo amdconfig --initial -f
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.