Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

Recently Ubuntu 12.10 upgrade was installed. Menu, taskbar, launchpad everything was gone when it launched. I get only the background screen in high resolution. I had this problem after some previous Ubuntu updates and I got the same result so I searched in forums and I knew what I had to do and I followed the steps to reinstall Nvidia driver but now I get the same useless Ubuntu. My parameters: Nvidia driver: 310.32 Graphic card: Nvidia Gforce 430 Ubuntu version: 12.10

These are the steps I made.

CTRL+ALT+F2 to prompt login
sudo apt-get update
I stopped xserver sudo service lightdm stop
sudo chmod 755 Nvidia- LInux-x86-64-310.32.run
sudo ./Nvidia-Linu-x86-64.310.32.run
Installation process started
I get "The distribution-provided pre-install script failed! Continue installation anyway?" (Answer: Yes)
I get "Would you like to register the kernel module sources with DKMS? This will allow DKMS to automatically build a new module, if you install a different kernel later. (Answer: Yes)
When prompted to install 32-bit compatibility libraries (Answer: Yes)
I get "Would you like to run the nvidia-xconfig utility to automatically update your X configuration file so that the NVIDIA X driver will be used when you restart X?" (Answer: Yes)
I get ""Would you like to run the nvidia-xconfig utility to update your X configuration Automatically
That file so the NVIDIA X driver will be Used When you restart X? Any pre-existing X configuration file will have backed up." (Answer: Yes)
sudo start lightdm
It returns and I get the same USELESS UBUNTU QUETZAL 

What's going on with Ubuntu? If it cannot work with Nvidia than it worth nothing. Millions of people using Nvidia cards.

share|improve this question
Funny thing. I did the whole proces again this time with the command sudo apt-get install linux-source and linux headers genericI tried to install headers too. Both occasion it said linux-source is already newest so everything was ok. I updated sudo apt-get update and I ran and installed the driver manually again and voilá it worked. I got my Ubuntu back. – Janos Fejos Mar 11 at 0:57

closed as not a real question by mikewhatever, Eliah Kagan, vasa1, The Lord of Time, hhlp Mar 7 at 9:38

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

Did you try disabling nouveau? I recalled blacklisting was involved with using Nvidia cards correctly.

Or at least that helped me with my GeForce.

share|improve this answer
2  
I recommend expanding this to explain how to disable nouveau. – Eliah Kagan Mar 6 at 21:56
How do I disable Nouveau driver? – Janos Fejos Mar 7 at 1:57

Is there a specific reason you installed the driver manually?

sudo ./NVIDIA* --uninstall
sudo apt-get install linux-headers-generic
sudo apt-get install linux-headers-$(uname -r)

install from official repositories

sudo apt-get install nvidia-experimental-310 nvidia-settings
sudo apt-get --purge remove xserver-xorg-video-nouveau
sudo nvidia-xconfig

if you prefer to run the latest, add the edgers ppa

WARNING IT'S EXPERIMENTAL

sudo apt-get install ppa-purge
sudo add-apt-repository ppa:xorg-edgers/ppa
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install nvidia-310
sudo apt-get --purge remove xserver-xorg-video-nouveau
sudo nvidia-xconfig

if things go wrong with the edgers ppa

sudo ppa-purge xorg-edgers/ppa
share|improve this answer
I installed the driver manually because from the repository automatically didn't install the latest driver. – Janos Fejos Mar 7 at 1:59

I recently had this problem as well. When fiddling with my graphics drivers, the Ubuntu Unity Plugin became disabled (for whatever reason). This might be the problem you're having as well. To check, open a terminal (Ctrl + Alt + T) and type ccsm. This will open Compiz. From there, check if "Ubuntu Unity Plugin" is disabled. If it is, enable it and disable all the conflicting plugins that pop op, and then reboot. If the plugin is enabled, then this is obviously the wrong solution.

share|improve this answer
It was enabled. I disabled and then I enabled it again. It was no change. – Janos Fejos Mar 11 at 0:51

Not the answer you're looking for? Browse other questions tagged or ask your own question.