Não é possível instalar os drivers gráficos da AMD

0

Acabei de mudar da minha antiga instalação do BackTrack 5 para uma instalação do Kubuntu. Infelizmente, não consigo instalar os drivers gráficos da AMD. Na minha instalação BT5, tudo correu bem, mas a minha instalação do Kubuntu está faltando alguma coisa para instalá-los. Aqui está o meu log:

Check if system has the tools required for installation.
fglrx installation requires that the system have kernel headers.  /lib/modules/3.13.0-24-generic/build/include/linux/version.h cannot be found on this system.
fglrx installation requires that the system has gcc tool. 
gcc 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.

Eu instalei a coisa do gcc via sudo apt-get install gcc . Isso correu bem, mas não sei onde obter as outras coisas. Alguém poderia me ajudar com esse problema?

Além disso, baixei esses drivers da página inicial da AMD para minha placa gráfica 4xxx. Então eu o extraí para receber o arquivo * .run e o abri, digitando sudo ./ati-xxx.run .

    
por KrauseDroid 18.05.2014 / 12:48

1 resposta

0

Você também precisa instalar os arquivos de cabeçalho do kernel. Para isso, basta abrir um terminal com ctrl + alt + t e digite o seguinte comando:

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

Se você não tem nenhuma ferramenta de criação ou autoconf / autotools instalada, você também deve digitar:

sudo apt-get install build-essential
    
por hmayag 18.05.2014 / 13:40