LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 11-04-2002, 06:48 AM   #1
Tnadrev
LQ Newbie
 
Registered: Nov 2002
Location: Ottawa, Ontario, Canada
Distribution: RedHat 8.0
Posts: 15

Rep: Reputation: 0
Redhat 8.0 + nVidia Drivers


Ok, similar questions have been posted, but as a linux n00b i just can't figure this out,
I followed the installation instructions on nVidia's site, 3 times, and still can't get it working,
i have been learning, i only re-installed linux once, the other times i was able to get it running again from the command line, by modifying XF86Config

I have no problem installing the GLX part, the problem arises when i try to install the kernal part, i get a whole whack of errors,
in primarily in nv.c,

i think the problem could be that RedHat upgraded it's kernel source, and kernel, but is still using the old kernel...
 
Old 11-04-2002, 06:58 AM   #2
Thymox
Senior Member
 
Registered: Apr 2001
Location: Plymouth, England.
Distribution: Mostly Debian based systems
Posts: 4,368

Rep: Reputation: 64
Have you tried using the source files, the .tar.gz ones?
 
Old 11-04-2002, 07:54 AM   #3
CragStar
Senior Member
 
Registered: Oct 2000
Location: UK - Frome
Distribution: Ubuntu
Posts: 1,081

Rep: Reputation: 47
Personally I think that NVIDIA should give up on the rpm's for a specific distro and concentrate on making the .tar.gz versions so that users know easily and quickly how to use them. The rpm's don't work half the time, and are probably not as good as the source anyway.

I would definately try the .tar.gz ones. Unpack them using this sequence, changing package for the name of the package:

tar vxzf package.tar.gz
cd package
make install

Install the kernel one first then the GLX package.

For more info on installing the drivers from source search the site, I think there are some excellent threads.
 
Old 11-04-2002, 12:03 PM   #4
Vaevictus
LQ Newbie
 
Registered: Nov 2002
Location: Wales
Distribution: Red Hat 8.0
Posts: 14

Rep: Reputation: 0
Hi, I get loads of errors in compiling the NVidia_kernel source too:
ultimately ending in make: *** [nv.o] Error 1

Red Hat 8.0, clean install.

i am thinking I maybe needing to update some packages on my machine.
 
Old 11-04-2002, 12:05 PM   #5
Tnadrev
LQ Newbie
 
Registered: Nov 2002
Location: Ottawa, Ontario, Canada
Distribution: RedHat 8.0
Posts: 15

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by Thymox
Have you tried using the source files, the .tar.gz ones?
yes, the glx compiles/installs fine, but the kernel gives me all sorts of errors, mostly in nv.c
 
Old 11-04-2002, 12:07 PM   #6
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
well how about you tell us what the errors are... you've probably not got the kernel source installed
 
Old 11-04-2002, 12:07 PM   #7
Tnadrev
LQ Newbie
 
Registered: Nov 2002
Location: Ottawa, Ontario, Canada
Distribution: RedHat 8.0
Posts: 15

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by CragStar
Personally I think that NVIDIA should give up on the rpm's for a specific distro and concentrate on making the .tar.gz versions
agreed, i only use tar'd versions for everything... i find with RPMs i can never find where it put stuff...
 
Old 11-04-2002, 12:28 PM   #8
Vaevictus
LQ Newbie
 
Registered: Nov 2002
Location: Wales
Distribution: Red Hat 8.0
Posts: 14

Rep: Reputation: 0
heres most of the output when I issue "make install" command
http://www.vae.nildram.co.uk/install_log.txt

i tried to grab the whole output using make install > install_log.txt but that wouldnt work
 
Old 11-04-2002, 12:50 PM   #9
El Kid
Member
 
Registered: Sep 2002
Posts: 50

Rep: Reputation: 15
You need to have kernel-sources installed.

go to menu->system settings->Packages

scroll down to Development and choose kernel development.

uninstall any rpm you installed rpm
rpm -e NVIDIA_GLX

now install nvidia drivers. since there arn't any RH8 rpm's use either tar.gz files or src.rpm files.

tar.gz
at console type:
tar zxvf NVIDIA_kernel-1.0-3123.tar.gz
cd NVIDIA_kernel-1.0-3123
su
*password*
make install
exit

tar zxvf NVIDIA_GLX-1.0-3123.tar.gz
cd NVIDIA_GLX-1.0-3123
su
*password*
make install
exit

src.rpm
su
*password*
rpm --rebuild NVIDIA_kernel-1.0-3123.src.rpm
rpm --rebuild NVIDIA_GLX-1.0-3123.src.rpm
cd /usr/src/redhat/RPMS/i386
ls (make sure they are there)
rpm -ivh (or -Uvh) NVIDIA_kernel-1.0-3123.rpm
rpm -ivh (or -Uvh) NVIDIA_GLX-1.0-3123rpm

now to check XF86Config
at console type:
su
*password*
gedit /etc/X11/XF86Config
scroll down to Section "Module"
find load "glx"
if it's not There add it
scroll down to Section "Device"
change Driver "nv" to Driver "nvidia"
save and exit
reboot

You should see Nvidia logo at start of gui.

Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "dri"
Load "glx" <--make sure it's there
Load "record"
Load "freetype"
Load "type1"

Section "Device"
# no known options
Identifier "NVIDIA GeForce 2 MX (generic)"
Driver "nvidia" <-- make sure to change
VendorName "NVIDIA GeForce 2 MX (generic)"
BoardName "NVIDIA GeForce 2 MX (generic)"

Last edited by El Kid; 11-04-2002 at 01:20 PM.
 
Old 11-04-2002, 01:09 PM   #10
Tnadrev
LQ Newbie
 
Registered: Nov 2002
Location: Ottawa, Ontario, Canada
Distribution: RedHat 8.0
Posts: 15

Original Poster
Rep: Reputation: 0
ok, figured out my problem, i feel st00pid
I figured i needed everything up2date after i installed RedHat... so i used up2date and installed everything it told me to... including kernel and kernel source... however being the n00b that i am, i did not realize i was still running the old kernel because i load linux from a boot disk... all i had to do was remake my boot disk, then make, make install both the kernel and the glx driver... i just played tux racer for the first time!
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Nvidia Drivers on Redhat 9 tombomb300 Linux - Software 8 09-18-2003 08:16 PM
Nvidia drivers & RedHat 9 wax Linux - Software 14 08-23-2003 01:04 PM
Updating NVidia Drivers in Redhat 8 prophet665 Linux - Software 10 07-28-2003 05:40 PM
NVIDIA Drivers on RedHat 8 kierl Linux - Hardware 7 03-26-2003 04:21 PM
Need help with Redhat 8 and nvidia drivers for geforce 4 ashleygorell Linux - General 14 03-16-2003 12:12 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 08:56 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration