LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   nVidia Drivers needs kernel source (https://www.linuxquestions.org/questions/linux-software-2/nvidia-drivers-needs-kernel-source-86488/)

eats85 08-28-2003 01:11 AM

nVidia Drivers needs kernel source
 
I am trying to install my nVidia drivers but they need to have the kernel source installed but my problem is that i cant get it to install properly i get this error
"error: kernel-source-2.4.20-20.9.i386.rpm: headerRead failed: hdr blob(1491548): BAD, read returned 1105399
error: kernel-source-2.4.20-20.9.i386.rpm cannot be installed"

Any ideas on how to fix this?
thanks
eats85

MaulingMonkey 08-28-2003 01:30 AM

It sounds like (to me) that the rpm isn't valid. Try re-downloading it from redhat.

The closest I found on a quick search:

http://www.redhat.com/swr/i586/kerne...20.9.i586.html

under the 'source rpm:' bit

DrOzz 08-28-2003 10:25 AM

or type:
redhat-config-packages
and install the development tools
the kernel source is on your distro's cds

eats85 08-28-2003 11:10 AM

I have upgraded the kernel since installation so the source on the cds would not work would they? or would they?

thanks eats85

DrOzz 08-28-2003 11:32 AM

that is true, you can't use what is on the cd's since you upgraded, so how did you do the kernel upgrade? manually, or up2date?

fancypiper 08-28-2003 11:32 AM

You need the stuff with your running kernel/compiler combo.

# Compiling/installing kernel modules
You will need to have installed:
1. The developmental packages (compiler)
2. The kernel source code that matches your running kernel
3. The module source or install code

Check out your system and look under the hood and see if you installed the stuff you need to do the job. Open an x terminal and type in this sequence of commands to see what kernel we are running and see if you have the kernel source installed:
Code:

[fancy@tinwhistle fancy]$ su -
Password:
[root@tinwhistle root]# uname -r
2.4.18-3

I am running kernel version 2.4.18-3. Do I have the proper source code?
Code:

[root@tinwhistle root]# cd /usr/src
[root@tinwhistle src]# ls -alc
total 3
drwxr-xr-x    4 root    root          136 Jun 12 14:53 .
drwxr-xr-x  16 root    root          424 Jun  4 12:04 ..
lrwxrwxrwx    1 root    root          14 Jun  4 12:11 linux-2.4 -> linux-2.4.18-3
drwxr-xr-x  16 root    root          584 Jun  4 12:11 linux-2.4.18-3
drwxr-xr-x    7 root    root          168 Jun  4 12:08 redhat
[root@tinwhistle src]#

I do have the same kernel version source code installed in the directory /usr/src/linux-2.4.18-3 and there is a symbolic link named linux-2.4 pointing to it.

If you don't see something similiar to this (but in color), you will need to install the kernel source.

NOTE: I noticed that Red Hat didn't make the symbolic link /usr/src/linux that all of the INSTALL files that I have read mentioned that I need, so I may as well make one now to save editing the files in the source code to install.So, I'll make it just now:
Code:

[root@tinwhistle src]# ln -s linux-2.4.18-3 linux       
[root@tinwhistle src]# ls -alc
total 3
drwxr-xr-x    4 root    root          160 Jun 12 15:46 .
drwxr-xr-x  16 root    root          424 Jun  4 12:04 ..
lrwxrwxrwx    1 root    root          14 Jun 12 15:46 linux -> linux-2.4.18-3
lrwxrwxrwx    1 root    root          14 Jun  4 12:11 linux-2.4 -> linux-2.4.18-3
drwxr-xr-x  16 root    root          584 Jun  4 12:11 linux-2.4.18-3
drwxr-xr-x    7 root    root          168 Jun  4 12:08 redhat
[root@tinwhistle src]#

Ah, there it is, so that's done.

Next, did I install the compiler?
Code:

[root@tinwhistle src]# gcc -v         
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
gcc version 2.96 20000731 (Red Hat Linux 7.3 2.96-113)
[root@tinwhistle src]#

Yes, I have a compiler installed.

If you don't have those two things installed, you have to install them first off your install CD.

If they are installed, download the source and happy comiling. :tisk: Make sure you carefully read the README and INSTALL files after extracting and before compiling/installing. :study:

# Guides to software management
LNAG - How do I install a program I downloaded from the Internet?
Rute Guide's software explanation
You might want to check out CheckInstall to manage source code installations/uninstallation

# Red Hat links
Red Hat Linux Manuals
Get your mp3 support here
Maximum RPM
rpmfind
Easier software management: apt4rpm - Red Carpet
Red Hat 8.0 Tips & Tricks

# Red Hat 7.3 down configuration commands
setup leads to several configuration tools

# Red Hat 7.3 up configuration commands
Configure soundcard:
redhat-config-soundcard
Configure X server:
redhat-config-xfree86
Configure network:
redhat-config-network
Manage software:
redhat-config-packages

# Handling NTFS
New Technology FileSystem (NTFS) HOWTOs
Linux NTFS project

eats85 08-28-2003 12:56 PM

bad file
 
Thanks everyone I got it under controll now it was just a bad file or bad download like Mr. MaulingMonkey siad. But now after getting a new file I got it installed and the nVidia drivers installed with no problems.

Thanks for your help!
eats


All times are GMT -5. The time now is 04:39 PM.