Problemas con el controlador NVIDIA Ubuntu 16.04

8

Estoy tratando de instalar los últimos controladores de Nvidia. Después de la instalación nvidia-smino puedo encontrarlo.

La tarjeta gráfica es una GeForce 860m, ​​y mi computadora portátil está bajo Ubuntu 16.04.1 LTS.

Lo que hice hasta ahora:

$ sudo apt-get purge nvidia-*
$ sudo add-apt-repository ppa:graphics-drivers/ppa
$ sudo apt-get update
$ sudo apt-get install nvidia-367
$ reboot
$ nvidia-smi
NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running.

¿Cómo puedo hacer que funcione?

EDITAR: me di cuenta de que $ sudo apt-get install nvidia-367devolvió el error:

Error! Bad return status for module build kernel: 4.4.0-36-generic (x86_64)
Consult /var/lib/dkms/nvidia-367/367.44/build/make.log for more information.

Aunque el controlador se está ejecutando realmente.

make.log contiene líneas como esta:

Makefile:676: Cannot use CONFIG_CC_STACKPROTECTOR_STRONG: -fstack-protector-strong not supported by compiler

y esto:

cc: error: unrecognized command line option ‘-fstack-protector-strong’
scripts/Makefile.build:258: recipe for target '/var/lib/dkms/nvidia-367/367.44/build/nvidia/nv-instance.o' failed
make[2]: *** [/var/lib/dkms/nvidia-367/367.44/build/nvidia/nv-instance.o] Error 1
Makefile:1403: recipe for target '_module_/var/lib/dkms/nvidia-367/367.44/build' failed
make[1]: *** [_module_/var/lib/dkms/nvidia-367/367.44/build] Error 2
make[1]: Leaving directory '/usr/src/linux-headers-4.4.0-36-generic'
Makefile:81: recipe for target 'modules' failed
make: *** [modules] Error 2
usuario2682877
fuente

Respuestas:

5

gcc-4.8 no apoyó -fstack-protector-strong

En su gcc-4.9lugar, instalé , purgué y reinstalé el controlador, y ahora funciona bien.

$ nvidia-smi
Tue Sep 13 17:31:24 2016
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 367.44                 Driver Version: 367.44                    |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce GTX 860M    Off  | 0000:01:00.0     Off |                  N/A |
| N/A   54C    P0    N/A /  N/A |      0MiB /  4043MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+

+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID  Type  Process name                               Usage      |
|=============================================================================|
|  No running processes found                                                 |
+-----------------------------------------------------------------------------+

Irónico es el que usé gcc-4.8porque IIRC una versión anterior de CUDA no era compatible con las versiones 4.9 o posteriores.

usuario2682877
fuente
Gracias esto funcionó! Tuve que usar sudo update-alternative --config gcc para cambiar de 4.8 a 4.9, porque anteriormente estaba usando ambas versiones de gcc para algunos proyectos de programación y olvidé volver a cambiar.
t2k32316