Instalação do driver, fonte do kernel não encontrada

2

Estou tentando instalar um driver NVidia Cuda em um Amazon EC2. Instância da GPU (Amazon Linux AMI (HVM) 2013.09.2 - ami-e9a18d80) seguindo as instruções definidas em um blog. Funcionou nas últimas duas semanas, mas hoje falha.

O estado das instruções

sudo yum -y groupinstall "Development Tools"
sudo yum -y install git libcurl-devel python-devel screen rsync yasm numpy openssl-devel
wget http://developer.download.nvidia.com/compute/cuda/5_5/rel/installers/cuda_5.5.22_linux_64.run
sudo sh cuda_5.5.22_linux_64.run

O erro é

Installing the NVIDIA display driver... The driver installation is unable to locate the kernel source. Please make sure that the kernel source packages are installed and set up correctly. If you know that the kernel source packages are installed and set up correctly, you may pass the location of the kernel source with the '--kernel-source-path' flag.

Há um comentário nas instruções sobre como possivelmente consertá-lo, mas não entendo os comandos. Não consigo navegar para os caminhos especificados. Se alguém puder me explicar como eu tenho 5 anos, acho que seria útil.

For people having trouble with installing CUDA (fails with some complaint about the kernel source), here's the fix I found… The kernel source in /usr/src/kernels wasn't the same version as the kernel I was running (which you can find with uname -r). I went into /boot/grub/menu.lst and made sure that the only enabled kernel version was the one I had the source for.

    
por user60434 15.02.2014 / 08:52

2 respostas

2

Você simplesmente precisa capturar sua árvore do kernel (e certifique-se de que a compilação é idêntica ao seu kernel inicializável).

Então, yum -y install kernel-devel kernel-headers

uname -r também informará a compilação específica do kernel, importante para garantir que ela corresponda aos pacotes de desenvolvimento!

    
por 15.02.2014 / 10:44
0

Primeiro, instale dkms :

sudo apt-get install dkms

Em seguida, faça a instalação do Cuda, por exemplo

sudo sh cuda_8.0.61_375.26_linux.run
    
por 25.07.2017 / 16:11