5

Hi :) I've recently bought a new PC with Palit GeForce GTX 1060 6GB Dual video card. Unfortunately, it seems like Ubuntu has some problems with it. When I type "sudo lshw -C display", I get this message:

 *-display UNCLAIMED
   description: VGA compatible controller
   product: NVIDIA Corporation
   vendor: NVIDIA Corporation
   physical id: 0
   bus info: pci@0000:01:00.0
   version: a1
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress vga_controller cap_list
   configuration: latency=0
   resources: memory:f6000000-f6ffffff memory:e0000000-efffffff memory:f0000000-f1ffffff ioport:e000(size=128) memory:f7000000-f707ffff

*-display description: VGA compatible controller product: Sky Lake Integrated Graphics vendor: Intel Corporation physical id: 2 bus info: pci@0000:00:02.0 version: 06 width: 64 bits clock: 33MHz capabilities: pciexpress msi pm vga_controller bus_master cap_list rom configuration: driver=i915_bpo latency=0 resources: irq:124 memory:f5000000-f5ffffff memory:d0000000-dfffffff ioport:f000(size=64)

and when I go to "Additional drivers", I get this: Unknown: Unknown. The device is using an alternative driver.

Juan Antonio
  • 1,602
Jecke
  • 121
  • 1
  • 2
  • 6

3 Answers3

3

Disable Secure Boot in BIOS. With Secure Boot enabled proprietary drivers will never load. Then run in a terminal

sudo apt purge 'nvidia.*'
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
sudo apt install nvidia-367 nvidia-prime

The 367 driver is a recommended by Nvidia LTS driver.

Pilot6
  • 92,041
0

I had the exact same problem with the GTX 1060 and 16.04. I followed all of the instructions here and in other threads but couldn't get past the login screen.

I was able to get it working by installing ubuntu 14.04, having secure boot disabled (I don't know if this matters I had just already tried it and kept it that way just in case - I may follow up if I try again with it on), and installing the proprietary drivers.

To install the proprietary drivers these are the exact steps I took. We have similar models so it might work for you.

CTRL+ALT+F1 #if you haven't already

sudo service lightdm stop 
cd ~/Downloads
wget http://us.download.nvidia.com/XFree86/Linux-x86_64/367.57/NVIDIA-Linux-x86_64-367.57.run
sudo chmod +x NVIDIA-Linux-x86_64-367.57.run
sudo ./NVIDIA-Linux-x86_64-367.57.run
sudo reboot

The driver install was done after a completely fresh install of ubuntu 14.04.5.

Here are some of my parts just in case it helps.

  • ASUS Z170-A LGA 1151 Intel Z170 HDMI SATA 6Gb/s USB 3.1 USB 3.0 ATX Intel Motherboard
  • Intel Core i7-6700K 8M Skylake Quad-Core 4.0 GHz LGA 1151 91W BX80662I76700K Desktop Processor Intel HD Graphics 530
  • SAMSUNG 850 EVO 2.5" 500GB SATA III 3-D Vertical Internal Solid State Drive (SSD) MZ-75E500B/AM
  • MSI GAMING GeForce GTX 1060 6GB GDDR5 DirectX 12 VR Ready (GeForce GTX 1060 GAMING X 6G)
nilch
  • 1
-1

The default drivers installed for the graphics card in Ubuntu is nouveau. This works fine for most of the times but at certain stages it is just not enough. On the other hand ppa's can be an alternative solution but in the long run it may cause minor damages to hardware.

Solution

1) Download the official drivers from the Nvidia website.

2)Run the installer script as root user

sudo sh "driver name".run

3) Reboot the system