I have GeForce GTX 560 Ti. I's worked fine in 12.04 with nvidia drivers. Unfortunately, after todays 12.10 update, something broke down.
I've tried nvidia-current, nvidia-current-updates and nvidia-experimantal. Always the same behaviour: Bad resolution in lightdm, after logging nothing except wallpaper. No unity panels, "win" key doesn't work.
After removing nvidia drivers everything work.
Best Answer
Before switching to the nvidia drivers you need to install linux-source and linux-headers (see bug 1068341). After the source is installed, try switching to the nvidia drivers.
Here is how:
Before you start, install all updates (and reboot the computer, if you are told to).
Switch to a terminal (
Ctrl-Alt-F1
).Login as your username.
Install linux source (
sudo apt-get install linux-source
) and headers (sudo apt-get install linux-headers-generic
).Uninstall nvidia driver - this depends on which version you installed (
sudo apt-get remove nvidia-current
orsudo apt-get remove nvidia-current-updates
orsudo apt-get remove nvidia-experimental-304
).Reinstall nvidia driver (
sudo apt-get install nvidia-current-updates
).If it successfully installs, restart the computer (
sudo shutdown -r now
).More In-depth How-to
The following link gives a more in-depth overview on how to handle the nvidia driver. It should be applicable to more cases, that are similar, but not exactly the same as the one described here:
https://help.ubuntu.com/community/BinaryDriverHowto/Nvidia