No se pueden instalar los controladores radeon crimson 15.12 Kali Linux

No se pueden instalar los controladores radeon crimson 15.12 Kali Linux

Recientemente instalé Kali GNU/Linux Rolling pero no puedo instalar mis controladores de gráficos, seguí estoenlace

Recibí algunos errores en el camino, pero este sigue sin resolverse. Esto aparece cuando presiono el botón de instalación:

cat /usr/share/ati/fglrx-install.log 
Supported adapter detected.
Check if system has the tools required for installation.
fglrx installation requires that the system have kernel headers for
greater than 3.6 release.
/lib/modules/4.6.0-kali1-amd64/build/include/generated/uapi/linux/version.h cannot be found on this system.
One or more tools required for installation cannot be found on the system. Install the required tools before installing the fglrx driver.
Optionally, run the installer with --force option to install without the tools.
Forcing install will disable AMD hardware acceleration and may make your system unstable. Not recommended.

pero uname -rme dice que tengo 4.6.0-kali1-amd64, de ahí mi confusión.

Respuesta1

Tienes que agregar a tu /etc/apt/sources.listarchivo (fuente):

deb http://http.kali.org/kali kali-rolling main contrib non-free
# For source package access, uncomment the following line
# deb-src http://http.kali.org/kali kali-rolling main contrib non-free

Luego actualice los repositorios e instale los encabezados:

sudo apt-get update
sudo apt-get install linux-headers-$(uname -r)

información relacionada