Ubuntu 16.04 unable to boot with GTX 1080 [duplicate]

I am using Ubuntu 16.04 with GTX 1080. On my first boot, the screen turn black after I selected Ubuntu in grub. After I added nomodeset, the black screen gone however it only shows the Ubuntu default background image. It can't reach the login screen.


Solution 1:

I had this problem with my 1080 and just solved it yesterday. You'll need to install using integrated graphics, install nvidia drivers, then switch back to the 1080.

First, make the live USB for Ubuntu. Go into your BIOS settings, and enable both iGPU and the GPU. Plug in your monitor to the HDMI port on the motherboard, and install Ubuntu as normal. After installation, boot Ubuntu and install the nvidia-367 drivers. Once that's done, you can plug your motherboard back into the the GPU and use Ubuntu.

Here's the PPA you need for nvidia-367: https://launchpad.net/~graphics-drivers/+archive/ubuntu/ppa

One problem I haven't solved is that the monitor turns off while Ubuntu is loading. It turns back on at the login screen. Not sure why :/

Solution 2:

Following the other instructions here (ppa and install nvidia-367) worked for me but I didn't need integrated graphics or a live CD. This worked for me - I was replacing a GTX 960 with the GTX 1080:

  1. Select one of the recovery entries in GRUB (under advanced)
  2. Select root prompt
  3. Remount filesystem with read/write access: mount -o remount,rw /
  4. Do apt-get purge nvidia-*
  5. reboot
  6. Select your normal Ubuntu entry in GRUB, I was then able to login albeit with a weird resolution
  7. Run the ppa instructions as described in the other answers:

    sudo add-apt-repository ppa:graphics-drivers/ppa
    sudo apt-get update
    sudo apt install nvidia-367
    

Its probably also possible to do it directly in the root prompt if you know how to get the network up.