Skip to content
Advertisement

Kernel update breaks CUDA

I have a NVIDIA Grid K2 GPU allocated to a virtual server running Ubuntu 14.04. To reinstall the proper drivers after an automatic kernel update I ran sudo apt-get update followed by sudo apt-get install nvidia-current.

Now I cannot get CUDA 7.5 to work any longer. If I run the deviceQuery sample I get the following message:

JavaScript

This is the output from sudo lshw -c video

JavaScript

Advertisement

Answer

I solved this issue with the following steps using the hints from the installation guide:

  1. Uninstalled the packages that I had mistakenly installed by running sudo apt-get --purge remove nvidia-current.

  2. Uninstalled CUDA 7.5 with the command sudo /usr/local/cuda-7.5/bin/uninstall_cuda_7.5.pl

  3. Restarted the server using sudo reboot

  4. Installed CUDA 7.5 by running the downloadable .run file and following the instructions.

  5. Checking that everything works by running the deviceQuery CUDA sample.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement