PDA

View Full Version : Installing NVIDIA drivers HOWTO



kelmo
05-08-2004, 05:11 PM
Here is a shortened howto taken from http://home.comcast.net/~andrex/Debian-nVidia/ with changes according to how I successfully completed this. You should not that the bleeding edge nvidia cards may not be supported by the linux driver package.

I used vanilla kernel soucre (linux-2.6.5) from kernel.org and applied the knoppix-kernel26.patch (probably not neccessary to apply patch). Kernel sources from apt are debian kernel sources with extra debian specific patches, they are not what Klaus used.

wget ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.5.tar.bz2
cp linux-2.6.5.tar.bz2 /usr/src
tar jxvf linux-2.6.5.tar.bz2
rm -f linux
ln -s linux-2.6.5 linux
cp /boot/config-2.6.5 linux/.config
cd linux/include
ln -s asm-i386 asm
cd ..
make oldconfig
patch -p1 <../knoppix-kernel26.patch
make include/linux/version.h (bug in cleaning process of linux-2.6.5)
cd /usr/bin
rm -f gcc (the kernel image was compiled with gcc-2.95 but symlink is to gcc-3.3)
ln -s gcc-2.95 gcc
cd /usr/src
apt-get update
apt-get install nvidia-kernel-common nvidia-kernel-source
tar zxvf nvidia-kernel-source
cd modules/nvidia-kernel
debian/rules KSRC=/usr/src/linux-2.6.5 KVERS=2.6.5 kdist_image
cd ..
dpkg -i nvidia-kernel-2.6.5_1.0.5336-9_i386.deb
apt-get install nvidia-glx
cd /usrbin
rm -f gcc
ln -s gcc-3.3 gcc

Thats the building and installation procedure done, now to let xserver know what driver to use. Edit /etc/X11/XF86Config-4 with your fav text editor and make the following mods:-

Drivers Section
Replace "nv" with "nvidia"

Modules Section
Remove or comment out lines including "dri" and "GLCore"
Ensure there is a line with Load "glx"

Done.

If you did this while running a 2.4 series kernel it is neccessary to boot up with the 2.6 kernel and do a "dpkg-reconfigure nvidia-glx". So maybe boot into linux 2.6.5 with the "single' boot option and do this and reboot and enjoy the 3d accellerated xserver.

If you get sick of the nvidia logo add this line to the device section of XF86config-4:-

Option "NoLogo" "true"

Kano provides an automated script for the installation of these drivers the 'nvidia way' on his scriptage page. Maybe this is easier to use than the 'debian way'.

Thanks to Andrew the author of the Debian-nVidia HOWTO

[/i]

nvgringo
05-08-2004, 08:49 PM
Kelmo, does frozen bubble work on your system after you follow this method. I used another method on a remaster. All the open gL stuff works great but some of the games that don't use open GL crapped out

renderedbrian
05-08-2004, 09:42 PM
Thanks for the info!

However I don't appear to have been succesfull. I have followed the instructions you posted
however the glx module does not get loaded despite having load "glx" in the modules section, and dri and GLcore commented out.

From my /var/log/XFree86.0.log

(II) LoadModule: "glx"
(WW) Warning, couldn't open module glx
(II) UnloadModule: "glx"
(EE) Failed to load module "glx" (module does not exist, 0)


Any suggestions?

--
Brian

kelmo
05-09-2004, 06:23 AM
Frozen Bubble works fine.

As for the glx module problem, try a dpkg-reconfigure nvidia-glx after x refuses to start, and then start kdm. I don't know what is going on with your setup?

zentu
05-09-2004, 06:38 AM
Frozen Bubble works fine.

As for the glx module problem, try a dpkg-reconfigure nvidia-glx after x refuses to start, and then start kdm. I don't know what is going on with your setup?

I belive that was a problem with the version of the older drivers (not sure, my bro had the same problem but I *unfortunately* have an ATI card, and the issue was on the NeverWinter Nights Board after people had upgraded in Linux).

renderedbrian
05-09-2004, 09:20 AM
Frozen Bubble works fine.

As for the glx module problem, try a dpkg-reconfigure nvidia-glx after x refuses to start, and then start kdm. I don't know what is going on with your setup?

Oh, the nvidia X Server works - XFree86.0.log shows nvidia module loaded and running.

Just glx does not load!


--Edit -- Fromthe nvidia-glx documentation I ran the command

/etc/init.d/nvidia-glx start

Now I have glx loaded, but I only get 5 fps in glx-gears! I'm sure I had this problem before in Fedora,
I solved it by going back to an older driver.

-- Edit -- got nvidia & glx working perfectly by using Kanos install-nvidia-4496-debian.sh script.




--
Brian