Differences between revisions 101 and 102
Revision 101 as of 2015-12-22 10:13:23
Size: 7469
Editor: vauss
Comment: translation menu
Revision 102 as of 2017-03-26 18:11:37
Size: 7473
Editor: ?RamonFischer
Comment: Add more reliable lspci command to determine graphics card
Deletions are marked like this. Additions are marked like this.
Line 14: Line 14:
$ lspci -nn | grep VGA
01:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Barts PRO [Radeon HD 6850] [1002:6739]
$ lspci -nn | grep '\[03'
01:00.0 Display controller [0380]: Advanced Micro Devices, Inc. [AMD/ATI] Mars [Radeon HD 8670A/8670M/8750M] [1002:6600]

Translation(s): English - Español - Français - Italiano - Melayu - Русский


AMD/ATI Proprietary Driver

This page describes how to install the AMD proprietary display driver (AMD Catalyst, aka fglrx) on Debian systems. For information on the open source drivers, see AtiHowTo.

Identification

The AMD/ATI graphics processing unit (GPU) series/codename of an installed video card can usually be identified using the lspci command. For example:

  • $ lspci -nn | grep '\[03'
    01:00.0 Display controller [0380]: Advanced Micro Devices, Inc. [AMD/ATI] Mars [Radeon HD 8670A/8670M/8750M] [1002:6600]

See HowToIdentifyADevice/PCI for more information.

Drivers

The proprietary "AMD Catalyst Linux Graphics Driver" (aka fglrx) provides optimized hardware acceleration of OpenGL applications via a direct-rendering X server. It is a binary-only Xorg driver requiring a Linux kernel module for its use.

One driver version is available for Debian 8 "Jessie":

The AMD Catalyst Legacy driver - supporting the Radeon HD 2000/3000/4000 series - is not available for Debian 8 "Jessie", as upstream has not updated the driver for newer Xorg releases (726500).

Two driver versions are available for Debian 7 "Wheezy":

All versions above are available only for the x86 and x86-64 architectures (Debian i386 and AMD64 ports respectively).

Installation

Debian 8 "Jessie"

AMD Catalyst 14.9

For support of Radeon R9 200, Radeon R7 200, Radeon HD 8000, Radeon HD 7000, Radeon HD 6000 and Radeon HD 5000 series GPUs (supported devices).

<!> This driver is incompatible with the GNOME desktop, as it does not support the EGL interface. It is recommended to use the free radeon driver instead.

  1. Add "contrib" and "non-free" components to /etc/apt/sources.list, for example:

    # Debian 8 "Jessie"
    deb http://httpredir.debian.org/debian/ jessie main contrib non-free
  2. Update the list of available packages. Install the appropriate linux-headers and fglrx-driver packages:

    # aptitude update
    # aptitude -r install linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') fglrx-driver

    This will also install the recommended fglrx-modules-dkms package. DKMS will build the fglrx module for your system.

  3. Create an Xorg server configuration file.

  4. Restart your system to enable the radeon blacklist.

Debian 7 "Wheezy"

AMD Catalyst 12.6

For support of Radeon HD 7000, Radeon HD 6000 and Radeon HD 5000 series GPUs. For older devices, see AMD Catalyst Legacy 13.1.

  1. Add "contrib" and "non-free" components to /etc/apt/sources.list, for example:

    # Debian 7 "Wheezy"
    deb http://httpredir.debian.org/debian/ wheezy main contrib non-free
  2. Update the list of available packages. Install the appropriate linux-headers and fglrx-driver packages:

    # aptitude update
    # aptitude -r install linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,') fglrx-driver

    This will also install the recommended fglrx-modules-dkms package. DKMS will build the fglrx module for your system.

  3. Create an Xorg server configuration file.

  4. Restart your system to enable the radeon blacklist.

AMD Catalyst Legacy 13.1

For support of Radeon HD 4000, Radeon HD 3000 and Radeon HD 2000 series GPUs.

  1. Add Debian Backports sources to /etc/apt/sources.list, also including the "contrib" and "non-free" components. For example:

    # Backported packages for Debian 7 "Wheezy"
    deb http://httpredir.debian.org/debian/ wheezy-backports main contrib non-free
  2. Update the list of available packages. Install the appropriate linux-headers and fglrx-legacy-driver packages:

    # aptitude update
    # aptitude install linux-headers-$(uname -r|sed 's,[^-]*-[^-]*-,,')
    # aptitude -r -t wheezy-backports install fglrx-legacy-driver

    This will also install the recommended fglrx-legacy-modules-dkms package. DKMS will build the fglrx module for your system.

  3. Create an Xorg server configuration file.

  4. Restart your system to enable the radeon blacklist.

Configuration

As the fglrx driver is not autodetected by Xorg, a configuration file is required to be supplied. For example:

/etc/X11/xorg.conf.d/20-fglrx.conf

  • Section "Device"
            Identifier "My GPU"
            Driver "fglrx"
    EndSection

The configuration file above can be created using these commands:

  • # mkdir /etc/X11/xorg.conf.d
    # echo -e 'Section "Device"\n\tIdentifier "My GPU"\n\tDriver "fglrx"\nEndSection' > /etc/X11/xorg.conf.d/20-fglrx.conf

Note: During driver installation you may have been notified that 'aticonfig --initial' can be used to create the required configuration file. If you do and then have problems with your video configuration, try using the simplified version shown above.

Restart your system at this point to enable the radeon driver blacklist.

Additional configuration information is available.

Troubleshooting

  • The fglrx driver conflicts with the radeon DRM driver. The radeon kernel module is blacklisted by the glx-alternative-fglrx or fglrx-driver packages.

  • The fglrx driver is incompatible with the GNOME desktop released as part of Debian 8 "Jessie", as it does not support the EGL interface (release notes). It is recommended to use the free radeon driver instead.

See Also


CategoryProprietarySoftware