2

I was so stoked, it's been my best linux experience to date. Everything was running grandly, til I let the updates do there thing, post reboot only one display worked which was labeled as laptop and the second display would not respond.

I found instructions to remove and re-install, doesn't work (though it's back to two monitors they display at 640x480 which I can't change) (That post is located here Ubuntu 12.10 won't display properly after kernel upgrade)

sudo modprobe nvidia

tells me 'Fatal module not present'

I'd rather not start from scratch again this weekend, so suggestions would be greatly appreciated.

1 Answers1

1

You need to install the linux-headers-generic and linux-source packages so the nvidia proprietary drivers can install properly.

  1. Get into login screen after booting.

  2. Press Ctrl+Alt+F1.

  3. Login with your username/password and run the following commands:

    sudo apt-get purge nvidia-*

    sudo apt-get install linux-source

    sudo apt-get install linux-headers-generic

    sudo apt-get install nvidia-(whatever version you want to install) nvidia-xconfig

    sudo shutdown -r now

You may have a weird post-grub screen (plymouth) but that is another bug. It should let you now login and setup your dual display properly.

You can also try Ctrl+Alt+T to open a terminal right after logging and so typing

software-center -> Will open ubuntu software center so you can install sources and headers-generic software-properties-gtk -> Then navigate to other drivers and get back to Nouveau drivers or install whatever nvidia proprietary driver you want.

Kevin Bowen
  • 20,055
  • 57
  • 82
  • 84