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.
7 Answers
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 :/
- 14,969
- 191
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:
- Select one of the recovery entries in GRUB (under advanced)
- Select root prompt
- Remount filesystem with read/write access:
mount -o remount,rw / - Do
apt-get purge nvidia-* reboot- Select your normal Ubuntu entry in GRUB, I was then able to login albeit with a weird resolution
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.
I had the same problem with my Nvidia GTX 1080 and Ubuntu Budgie 17.04. I have no integtated Graphics available. My LAN is connected via DHCP to the internet.
My walkthrough how I got it running:
- Download Ubuntu minimal installer (Link to ubuntu.com) and create a bootable usb stick
- Choose "Install ubuntu" when booting from your boot usb stick and follow the instructions of the text installer (in one step you can choose your preferred desktop environment - in my case ubuntu Budgie)
- After installing reboot via rescue mode (there's an entry in GRUB)
- choose "command line prompt" in the rescue mode menu
- Type
sudo ip -o linkand look what's the name of your ethernet adapter - Type
sudo dhclient write-here-name-of-your-ethernet-adapter - Then type
sudo add-apt-repository ppa:graphics-drivers/ppa - Then type
sudo apt-get update - Then type
sudo ubuntu-drivers autoinstall - If everything is installed and you have your command line prompt again, type
reboot
Now the X-Server should work as expected with the GTX 1080
- 21
I agree with sargunster's method if your CPU comes with the integrated graphic unit.
If you are using Xeon or other systems without other dedicated graphic controller, you can follow my method:
- Create a bootable USB loaded with Ubuntu server image.
- Install the Ubuntu server. If you cannot boot into the system after the installation (displaying fb characteristic error), you can add
nomodesetto the kernel flags. Once reach the command prompt, login the system and add nvidia proprietary driver repository.
sudo add-apt-repository ppa:graphics-drivers/ppasudo apt update && sudo apt install nvidia-367Install Ubuntu or Kubuntu desktop as you wish.
sudo apt install ubuntu-desktopor
sudo apt install kubuntu-desktopYou will be asked to select display manager between lightdm or sddm. I personally perfer using sddm.
You are allowed to boot into graphical user interface after the reboot.
- 11
Sounds like to me its a driver issue. Try setting up a live cd and installing nvidia drivers and see if that resolves the issue. Im just guessing at the moment, i would wait for more responses to see if this is a known issue.
- 66
If you already have an OS Installed and are upgrading to the GTX 1080, you could boot into the OS Using the older gpu (with the 1080 plugged in), and then install the new drivers. No need for a live OS. Worked for me
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt install nvidia-367
- 73
- 4
The screen turns black because the screen connected to the gpu. Do connect to motherboard before installing the driver. Then, use the nvidia provided download rather than ppa. I solved this issue for my pc, but I don't remember the step correctly.
p/s: You may turn off the intel or anything gpu in the boot. rather than use the nouveau thing.
- 51