12.04 update and nvidia

38,772

Solution 1

Check this question, and similar questions first. It happens when there are two different version of nvidia driver in the system. It is a known issue. You need to take care of the nvidia version of your kernel and the graphic card identical. Or, If you didn't uninstall your previous driver version. This can happen because nvidia-current-dev is of version 304 and nvidia-current-updates-dev is of version 319 as reported.

If you've installed the nVidia driver from Ubuntu's Additional Drivers dialogue , try

sudo apt-get purge nvidia* 

then try reinstalling by

sudo apt-get install nvidia-current-updates-dev 

then reboot. If you have used the .run file from nVidia's website then go to a console by pressing Alt+Ctrl+F1 and then run

nvidia-xxx-pkg1.run --uninstall 

to remove the previous driver components. Now give a reboot and see if that works. If not, then execute

sudo echo "blacklist nouveau" >> /etc/modprobe.d/blacklist.conf

so that the default nouveau driver for nVidia chipsets are not loaded instead of proprietary one. Finally install packaged binary drivers by

sudo apt-get install nvidia-current-updates-dev

chekc this link as well.

Solution 2

After you

sudo apt-get purge nvidia*

try:

sudo apt-get install nvidia-319-updates-dev

This worked for me, without the 319 it just re installed 304.

Share:
38,772

Related videos on Youtube

vartec
Author by

vartec

Updated on September 18, 2022

Comments

  • vartec
    vartec almost 2 years

    I've just have had nasty surprise of graphics not working after latest update (bringing it up to kernel version 3.2.0-52-generic). Apparently after the update it was expecting nvidia-319 driver, while it seems to me that on 12.04 nvidia-current points to nvidia-304. Thus I had to manually install nvidia-319 and uninstall nvidia-304.

    Is this because I've have messed up something in my configuration or is it known issue?

  • vartec
    vartec almost 11 years
    on 12.04, nvidia-current = nvidia-current-updates = nvidia-304, all of which are at version 304.88.ubuntu0.0.3.
  • NKN
    NKN almost 11 years
    If you still have the problem, just uninstall everything related to nvidia and install it properly again. mine is 304.88.ubuntu0.0.2.
  • vartec
    vartec almost 11 years
    As I've wrote in the question, I have solved the problem manually. What I don't understand why would I have problem in the first place if I did proper update, which should have taken care of properly updating the packages.
  • GaryP
    GaryP almost 11 years
    I've had this similar issue, What I did was purge everything realted to nvidia. And did an apt-get update. Then went to Preferrences > Additional Drivers > then chose the nvidia recommended Propietary Drivers. NVIDIA accelerated graphic driver [Recommended], I've chosen that option and clicked activate. My Kernel version is 3.2.0-51-generic
  • ACyclic
    ACyclic over 10 years
    sudo echo "blacklist nouveau" >> /etc/modprobe.d/blacklist.conf doesn't work as sudo only elevates the echo command, not the pipe to blacklist.conf