2

I have a Nvidia GeForce 8600 GT graphics card that worked on windows before I switched to Ubuntu 14.04. When I booted up for the first time the screen had white pixel sized rectangles appearing and moving around (similarly to a tv screen that is staticky) and the screen would freeze. I tried switching to A Nvidia proprietary driver but none of those were Nvidia GeForce 8600. I went to the website to download the driver manually but I would never get far enough before the computer would freeze and I would have to enter the R.E.I.S.U.B command to shutdown the computer. After this happened a few times i finally decided to switch to the integrated graphics card. It has been working fine but now I want to change back to my Nvidia card because it is faster and compatible with more games but every time I try to turn it back on from the shutdown menu settings and boot it up It either partially boots and then blacks out or fully boots and shows "acpi ppc probe failure" then quickly freezes. I am starting to wonder if my graphics card is compatible with Linux since on the box it says "built for Vista" Is there any way to make it work?

1 Answers1

1

I have a GeForce GTX 860M on newer hardware that was giving me problems after installation of 14.04. My problems are a combination of video card and other unsupported hardware. I updated my kernel and driver and that has resolved most of my problems. One relevant glitch that persists is my system boots to a black screen because the nVidia driver doesn't know how to switch the output to the LCD correctly. (Solution: close lid of laptop after boot. System goes into suspend. Then, open lid and unsuspend. Video driver figures it out and login dialog appears.)

To do what I did:

  1. Get a newer kernel. It is not clear to me from your description if you need this but it is fairly safe and fully reversible. sudo apt-get install linux-generic-lts-vivid It will leave your original kernel in place. Make sure you have some extra free space on /boot if you are going to let Ubuntu auto-update both series of kernels. Afterwards pay attention to the kernel that GRUB selects when you boot up.
  2. Install the xorg edgers ppa and then sudo apt-get install nvidia-352. to get a newer nVidia driver. Note that 352 is not the newest release. I am using it because the newer ones have/had a bug in them that conflicted with my upgraded kernel. Feel free to try the others but you can only test one at a time. If you want to be able to go back to your previous configuration after installing this PPA be sure to read the information on the PPA page before you begin.
ChinnoDog
  • 126