PDA

View Full Version : Official Nvidia drivers


noxlord
April 17th, 2005, 06:09 PM
Installing the Nvidia binaries requires me to init runlevel 3. However, it is impossible to use the common "init 3" command. How do I achieve this ?

Firetech
April 17th, 2005, 06:13 PM
Hmm, if it's the message that tells you taht you probably got an xserver running, just login to a tty console (Ctrl+Alt+F1) and type "sudo /etc/init.d/gdm stop" (or kdm if you run kubuntu). Then run the nvidia installer and wait for it to finish. After that, to start X again, run "sudo /etc/init.d/gdm start" (or kdm if you still run kubuntu :D)

noxlord
April 17th, 2005, 07:24 PM
when typing "gmd stop" the consol say: Gdm already running: stopping. :neutral:

noxlord
April 18th, 2005, 09:23 AM
ok, I got the xserveur down !!! now I need to fetch the kernel-source for the driver to compile... I looked in the apt prepositories and found no kernel sources... is this normal ?

brickbat
April 18th, 2005, 11:35 AM
Hi, this may be a stupid question but I thought the official nvidia drivers were in the universe/multiverse repositories. I just did an apt-get and there they were.

Here are the full instructions I followed.

http://ubuntuguide.org/#installnvidiadriver

ciao
bb

jdodson
April 18th, 2005, 11:41 AM
yeah i would recommend installing the nvidia/ati drivers that come in ubuntu.

i created a guide that might help:
http://ubuntuforums.org/showthread.php?t=25723

wolovids
April 18th, 2005, 11:49 AM
Just be aware of this bug (https://bugzilla.ubuntu.com/show_bug.cgi?id=7183).

It's a nasty one!

jdodson
April 18th, 2005, 01:27 PM
Just be aware of this bug (https://bugzilla.ubuntu.com/show_bug.cgi?id=7183).

It's a nasty one!


i will, though i have never had that problem.

almarag
April 19th, 2005, 05:45 PM
My unnoficial guide to install nvidia-drivers from www.nvidia.com

1. Download the nvidia drivers from nvidia.com
2. Install the kernel headers from your kernel:

# sudo apt-get install linux-headers-2.6.10-5-386

3. Create a symbolic link in /usr/src:

# sudo ln -s /usr/src/linux-headers-2.6.10-5-386 linux

4. Execute the nvidia-installer:

# sudo ./NVIDIA-installer-bla.bla.bin

5. Follow the on-screen instructions.
6. Change the appropiate lines in xorg.conf (or XFree86-4.conf if you are still using Xfree)

# Load "glx" (put the # as commentary)
# Load "dri" (idem)
Driver "nvidia" (instead of nv)

7. Load the nvidia kernel module:

# sudo modprobe nvidia

8. Check if the installer add an entry in /etc/modules. If not, add the nvidia to file.
9. Restart the X server
10. Eat some cookies :)

almarag.

Firetech
April 25th, 2005, 09:37 AM
# Load "glx" (put the # as commentary)

Why would you comment out GLX? nVidia's guide sais that you should make sure that you have it on. It is correct to comment out "dri", but AFAIK, GLX is for the 3D acceleration. Without it, you may not get any 3D. I may be wrong though...
If not commenting out glx prevents X from starting, something is wrong.

c_dog
April 25th, 2005, 10:19 AM
Why bother going through all the trouble now of installing the Nividia driver modules via scripts and whatnot. The latest Nvidia proprietory driver, 1.0.7174, has been on the Hoary CDs, DVD, and in the restricted repositories since the day (literally "the day") of Hoary's offical release. The bug mentioned earlier does not effect 7174. If you use the debs you won't have to recompile the driver module everytime the kernel gets updated.

Domhnull
April 26th, 2005, 08:24 AM
Thanks for this tip - I used it yesterday when I switched to Linux. I just wanted to add that you still need to edit your X config file.

sudo gedit /etc/X11/xorg.conf

Then change

Driver "nv" (or Driver "vesa") to Driver "nvidia"

In the module section make sure you have

Load "glx"

and remove (if they exist)

Load "dri"
Load "GLcore"

Then restart X. I just took that from the Nvidia instructions on their site for the drivers. Anyway it worked fine for me and I was able to install Point2Play and World of WarCraft.