Originally posted by: SleepWalkerX
Every distribution will provide the same basic open-source nvidia display driver shipped with xorg. Sometimes what happens is that the basic driver screws up on certain hardware (especially with newer hardware) because open-source programmers aren't provided with enough information to produce a stable and functional driver. Nvidia is not entirely open-source friendly. They eventually released open-source drivers for their motherboard hardware (onboard ethernet, onboard sound, etc) so that gives us hope that they will continue to provide open-source community with information to program stable graphics card drivers (especially now with ATi open-sourcing their graphics driver!).
Can you actually boot into the desktop environment or are you having problems before that?
Originally posted by: scott
(A)
The 169.12 linux driver is available on nvidia's site.
(B)
http://en.opensuse.org/NVIDIA
sudo su
apt-get install module-assistant gcc nvidia-kernel-common
m-a update
m-a prepare
m-a auto-install nvidia
apt-get install nvidia-glx
nano /etc/X11/xorg.conf
Originally posted by: SleepWalkerX
The easiest way to install the nvidia driver with Debian is apparently through module-assistant. Here's the link to Debian's wiki.
There's a lot of info to sift through so let me copy and paste you some directions.
Your repositories should be set up to access the non-free nvidia packages so this shouldn't be a problem. Open up the terminal and login as root.
sudo su
Now we're going to install some source code and compile a kernel module. Copy and paste the following commands once you're root.
apt-get install module-assistant gcc nvidia-kernel-common
m-a update
m-a prepare
m-a auto-install nvidia
apt-get install nvidia-glx
Now we need to tell xorg to use the nvidia driver instead of any other driver. While you're root type
nano /etc/X11/xorg.conf
Scroll down until you see 'Section "Device"' . Right under that you'll find it say
Driver "xxxx"
where xxxx would either say vesa, nv, or whatever. Replace xxxx with nvidia (again, keep the parenthesis). Now hit Ctrl+X and if it asks you to save hit y and then enter. Now just reboot and you should be good to go (you can do this by typing the "reboot" command while being root). If you want you can do all this while you're in the terminal in my first post. That way you can do everything in one step and be done with it.