LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 12-09-2016, 06:36 PM   #1
Pblant0n
LQ Newbie
 
Registered: Dec 2016
Posts: 4

Rep: Reputation: Disabled
Angry Can't boot with new Nvidia Geforce GTX 1060


I had a video card flake out and was wanting to go to 4k anyway, so I bought a new Geforce GTX1060. My Linux partition won't boot now. I get through POST fine, but when the drivers load, black screen. I never get any farther.

My Windows 10 partition boots up and runs fine, evern with full 4k support, but not the Linux one (Fedora 24).

I've also tried booting to a Fedora 25 live on USB flash and DVD, and a Cinnamon Mint 18 live also on usb flash. Same result with all. Posts fine but won't load past the driver init.

With Fedora it will load that little blue, light blue and white bar across the screen all the way, but nothing ever happens after that.

I expect that Linux will catch up and eventually it'll just work, but I can't wait as I use my Linux partition e'rday.

Any help would be most excellent.

Thanks!

Last edited by Pblant0n; 12-09-2016 at 06:55 PM.
 
Old 12-10-2016, 02:44 AM   #2
Keruskerfuerst
Senior Member
 
Registered: Oct 2005
Location: Horgau, Germany
Distribution: Manjaro KDE, Win 10
Posts: 2,199

Rep: Reputation: 164Reputation: 164
Then this graphics card is not yet supported.
The nouveau driver is the problem.
 
Old 12-10-2016, 04:54 AM   #3
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Following on from the previous post, have you installed the proprietary "binary blob" NVIDIA driver?
Have you tried opening one of the consoles by pressing Ctrl+Alt+F3, for example?
 
Old 12-10-2016, 10:22 AM   #4
seasons
Member
 
Registered: Dec 2014
Distribution: siduction
Posts: 264

Rep: Reputation: 58
Tried booting with nomodeset option in kernel line?
 
Old 12-11-2016, 01:12 PM   #5
Fat_Elvis
Member
 
Registered: Oct 2016
Distribution: FreeDOS 1.2
Posts: 309

Rep: Reputation: 92
Exactly what the other posters said.

Fedora must offer a way to halt grub and go into manual mode? Add --nomodeset at the end of the kernel line.

Like so:

Code:
linux	/boot/vmlinuz-foo root=/dev/nvme0n1p2 ro resume=blah-blah --nomodeset
Don't need to touch the rest of that line.

You'd only need to do that once. When the system boots, add a file to /etc/modprobe.d, with the contents: "blacklist nouveau"

Code:
sudo echo "blacklist nouveau" > /etc/modprobe.d/10-nouveau.conf
The directory names might be slightly different, since I'm not on Fedora. You should be able to find them easily enough.

After you reboot, install the proprietary Nvidia driver from Nvidia. Should be a package for that in the unofficial repositories.

Nouveau driver doesn't seem to support the newest line yet, and since you own that card I am going to guess that you do a bit of gaming, in which case the Nvidia drivers should offer a substantial performance boost anyway.

In an ideal world, Nvidia would do like Intel and just dump their code so open source driver writers can handle all of this headache for us. Alas...

Last edited by Fat_Elvis; 12-11-2016 at 01:18 PM.
 
Old 12-11-2016, 10:20 PM   #6
Pblant0n
LQ Newbie
 
Registered: Dec 2016
Posts: 4

Original Poster
Rep: Reputation: Disabled
Thanks Fat Elvis et.al.

No, not a gamer. Just a developer who wants to have a lot of real estate. I'm driving a 55" 4k display as my main monitor, with two 24" 1080P monitors on an arm on the side.

I first bought a cheaper card that would drive the 4k monitor, but it was DOA so when I took it back, I spent the extra little bit and bought the GTX 1060. It's overkill for my application, but who doesn't like a little overkill from time to time?
 
Old 12-11-2016, 11:11 PM   #7
seasons
Member
 
Registered: Dec 2014
Distribution: siduction
Posts: 264

Rep: Reputation: 58
What exactly was the point of the previous post?

Look, boot with nomodeset as in directions provided by Elvis except don't use the hyphens before nomodeset (I don't think that will work):
Code:
linux	/boot/vmlinuz-foo root=/dev/something ro resume=blah-blah nomodeset
Once that's done, it should allow you to boot to GUI, albeit with no 3D accel and a reduced resolution. Then you can install the nvidia driver. I'm not a Fedora user/fan, so don't ask me for specifics, but I know RPMFusion and Negativo17 are popular options (google for details). If you do it correctly, you should reboot and everything will "just work" (C).

As for blacklisting nouveau, that should be done automatically when you install nvidia proprietary driver.

Let us know how it works.
 
Old 12-12-2016, 02:22 AM   #8
Pblant0n
LQ Newbie
 
Registered: Dec 2016
Posts: 4

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by seasons View Post
What exactly was the point of the previous post?
Fat Elvis assumed I was a gamer. I was just chatting. Thanks for your suggestion. I will try it and let you know.

And the point of this post, much like the last one, is to show you that I appreciate your time, and am letting you know I am reading your posts.

I'm in the middle of a deadline and don't have time to work on the issue right now, but will try your suggestion after work tomorrow.

Thanks again!

Last edited by Pblant0n; 12-12-2016 at 02:24 AM.
 
Old 12-12-2016, 08:52 AM   #9
Fat_Elvis
Member
 
Registered: Oct 2016
Distribution: FreeDOS 1.2
Posts: 309

Rep: Reputation: 92
Quote:
Originally Posted by Pblant0n View Post
It's overkill for my application, but who doesn't like a little overkill from time to time?
Hehe, I hear you.

Quote:
Originally Posted by seasons View Post
Look, boot with nomodeset as in directions provided by Elvis except don't use the hyphens before nomodeset (I don't think that will work)
Ah, I haven't needed to mess with grub in a while, so I'd defer to seasons about the syntax.

Just one more note: I'd strongly recommend the Fedora specific driver rather than the generic binary from Nvidia. Nvidia's version completely disregards your existing directory structure and can cause some headaches.

Last edited by Fat_Elvis; 12-12-2016 at 08:54 AM.
 
1 members found this post helpful.
Old 12-24-2016, 07:37 PM   #10
Brains
Senior Member
 
Registered: Apr 2009
Distribution: All OS except Apple
Posts: 1,591

Rep: Reputation: 389Reputation: 389Reputation: 389Reputation: 389
Had the same issue with GTX970m. Adding --> nouveau.modeset=0 to the kernel line got it booted to a desktop with one step down from the monitor's default resolution.

Also edited /etc/default/grub to make that happen upon every boot till I got my education on Bumblebee, and issued command --> sudo update-grub after editing the file.
Changes from original to edited highlighted in the code boxes below, blue is before and red is after editing.
Quote:
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""
Quote:
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT=nouveau.modeset=0
GRUB_CMDLINE_LINUX=""
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
NVIDIA GeForce GTX 750 Ti - Interesting Artifacts Freet128 Linux - Hardware 6 02-16-2015 02:15 AM
LXer: NVIDIA GeForce GTX 650 On Linux LXer Syndicated Linux News 0 10-23-2013 06:51 PM
LXer: NVIDIA GeForce GTX 550 Ti LXer Syndicated Linux News 0 10-21-2011 07:50 AM
LXer: NVIDIA GeForce GTX 280M LXer Syndicated Linux News 0 06-19-2009 12:10 PM
does nvidia Geforce gtx 280 work on feodra 9? olracdor Linux - Newbie 6 10-10-2008 03:08 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 02:53 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration