Heres how I go about installing the nvidia drivers in Debian..
The key combination to kill X is
CTRL + ALT + BACKSPACE
In Debian gdm will automatically restart X so you need to shutdown GDM first.. (or xdm or kdm whatever the case may be.. )
I prefer the Debian way of installing the nVidia drivers using the Module assistant..
su -
/etc/init.d/gdm stop
apt-get update
apt-get install module-assistant nvidia-kernel-common
m-a update
m-a prepare
m-a a-i nvidia
apt-get install nvidia-glx
Edit your xorg.conf according to nVidias specifications.
Backup the file first
cp -p /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
Edit /etc/X11/xorg.conf: use vim, pico, or nano whatever editor you are familiar with..
* In the "Module" section, be sure that you have a line
Load "glx"
and remove or comment out any lines that refer to the "
dri" or "
GLCore" modules.
* In the "Device" section for your video card, be sure you have a line
Driver "nvidia"
/etc/init.d/gdm start to restart your X server
You should see the nVidia logo flash on the screen as X starts to tell you that your Drivers are working..
This information taken from
http://home.comcast.net/~andrex/Debi...tallation.html
any time you do a kernel update, after you reboot you will have to run the following commands to get the nVidia module compiled for the new kernel.. should only take a minute or so to do..
m-a update
m-a prepare
m-a a-i nvidia
apt-get install nvidia-glx