0

How to install my display card driver? Previously, I did the following things:

  1. Downloaded the official driver from AMD.com : http://support.amd.com/en-us/download/desktop/legacy?product=Legacy2&os=Linux%20x86_64
  2. Now I have this : enter image description here
  3. Did this in a terminal : chmod +x amd-driver-installer-catalyst-13.1-legacy-linux-x86.x86_64.run
  4. Did this in the terminal : sh amd-driver-installer-catalyst-13.1-legacy-linux-x86.x86_64.run enter image description here
  5. I got this windows, chose the first option and then click "continue" : enter image description here
  6. And this windwos : enter image description here

    .log file : http://paste.ubuntu.com/7320170/

  7. Now what can I do?

Thank you for your attention

------------------------------------------------------------
Desktop Information
------------------------------------------------------------
OS           : Ubuntu 14.04 LTS (64 bits)
Display Card : MSI R4770 Cyclone (ATI Radeon HD 4770)*
CPU          : AMD Athlon II X4 620
------------------------------------------------------------
* "No additional drivers available" in "Additional Driver" page

enter image description here enter image description here

Braiam
  • 67,791
  • 32
  • 179
  • 269
Casper
  • 2,998
  • 10
  • 33
  • 56

3 Answers3

2

Your log suggests that you are missing the linux-headers-generic package.

You can install this by either searching the software centre or entering in a terminal

sudo apt-get install linux-headers-generic

Should the install continue to fail you may also need to install build-essential, gcc,dkms and make.

you can do this in a terminal by typing sudo apt-get install build-essential dkms gcc make

0

That windows is telling that you may do this prior to launch the .run file:

sudo apt-get install fglrx

But maybe you must do all this:

sudo dpkg --add-architecture i386
sudo -i
cd /etc/apt/sources.list.d
echo "deb http://archive.ubuntu.com/ubuntu/ precise main restricted universe multiverse" >ia32-libs-raring.list
apt-get update
apt-get install ia32-libs
rm /etc/apt/sources.list.d/ia32-libs-raring.list
apt-get update
exit

Then do:

sudo apt-get install fglrx
sudo ./amd-driver-installer-catalyst-13.1-legacy-linux-x86.x86_64.run --force

After a reboot run:

aticonfig

Note: ATI drivers are for 32 Bit system (yes, i know it says 64bits but it is really 32 bit, if you are fast enough you can see it install things of i386), they can be installed on 64 Bit system but you need 32bit layer on the 64 bit system... same is also needed for ADB (for Rooting Android)... i took the idea from that... on my previous Ubuntu i had to install ia32-libs to be able to use adb (to root an android device from my linux desktop) ... after upgrading to 14.04 all unity icons, dash, and top bar was shown corrupted... so i need to reinstall ATI drivers... so again install 32 bit support for the 64 bit ubuntu ... etc etc, maybe it also help others!

P.D.: Installing ia32-libs tooks a lot of time, so be very pacient!

0

First of all, the older driver doesn't work well with programs and the newer driver doesn't support 5K series so your best option is to stick to the x.org open-source driver, however you may wish to proceed.

If you have previously installed the driver (maybe Ubuntu preinstalled it for you) then do

sudo amdconfig --initial

sudo amdconfig --uninstall

Then after the uninstall you can try installing the driver and if the log gives the same error, force the installation by typing

sudo ./amd-driver-installer-catalyst-13.1-legacy-linux-x86.x86_64.run -force

I have a shitload (5 years) of Amd-Linux experience going from 4290, 4850, 5850, 5870, 6970. Let me know how it goes!

Nick Bailuc
  • 3,325
  • 12
  • 45
  • 68