Não é possível instalar os drivers radeon crimson 15.12 Kali Linux

0

Eu instalei recentemente o Kali GNU / Linux Rolling, mas não consigo instalar meus drivers gráficos, eu segui isso link

Tem alguns erros ao longo do caminho, mas este permanece sem solução. Isso aparece quando pressiono o botão de instalação:

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.

mas uname -r me diz que tenho 4.6.0-kali1-amd64, daí minha confusão.

    
por sh333p 24.10.2016 / 16:54

1 resposta

1

Você precisa adicionar ao seu arquivo /etc/apt/sources.list ( source ) :

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

Em seguida, atualize os repositórios e instale os cabeçalhos:

sudo apt-get update
sudo apt-get install linux-headers-$(uname -r)
    
por 24.10.2016 / 18:03