-1

I have a question =) After installing Nvidia drivers on Ubuntu 15.10 I have this error on my boot screen error How can I fix it?

lspci -k | grep -EA2 'VGA|3D' 
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
    Subsystem: Acer Incorporated [ALI] Device 0647
    Kernel driver in use: i915
--
01:00.0 VGA compatible controller: NVIDIA Corporation GF117M [GeForce 610M/710M/810M/820M / GT 620M/625M/630M/720M] (rev a1)
    Subsystem: Acer Incorporated [ALI] GeForce 710M
    Kernel driver in use: nvidia
Braiam
  • 67,791
  • 32
  • 179
  • 269
  • 2
    nvidia-prime is not a driver, it is NVIDIA Optimus (to switch between internal and dedicated graphics) support - please edit your question with the output from this command : lspci -k | grep -EA2 'VGA|3D' – cl-netbox Dec 27 '15 at 11:24

1 Answers1

0

Reinstall the NVIDIA drivers - but first remove the NVIDIA software you have installed.
On login screen press Ctrl+Alt+F1 - enter user name and password, then execute :

sudo apt-get purge nvidia*  
sudo reboot  

After the reboot ... install the NVIDIA drivers 352 from the official Ubuntu repositories.
On login screen press Ctrl+Alt+F1 - enter user name and password, then execute :

sudo apt-get update
sudo apt-get install nvidia-352 nvidia-prime
sudo reboot  

NVIDIA X Server Settings - PRIME Profiles : switch between intel and NVIDIA graphics.

Byte Commander
  • 107,489
cl-netbox
  • 31,163
  • 7
  • 94
  • 131