When ever i try to install GCC on my linux (centos) It comes back with missing

glibc-headers-2.5-58.el5_6.4.x86_64 from updates has depsolving problems --> Missing Dependency: kernel-headers is needed by package glibc-headers-2.5- 58.el5_6.4.x86_64 (updates) glibc-headers-2.5-58.el5_6.4.x86_64 from updates has depsolving problems -->

Missing Dependency: kernel-headers >= 2.2.1 is needed by package glibc-headers-2.5- 58.el5_6.4.x86_64 (updates)

Error: Missing Dependency: kernel-headers >= 2.2.1 is needed by package glibc-headers-2.5-58.el5_6.4.x86_64 (updates)

Error: Missing Dependency: kernel-headers is needed by package glibc-headers-2.5-58.el5_6.4.x86_64 (updates)


I try yum install kernel-header & kernel-devel but get back:

No package kernel-headers available.

Any suggestions?

link|improve this question
Fixed The Issue, Was a conflict inside the yum.conf file. – Stewart Dick Jun 29 '11 at 20:36
feedback

2 Answers

up vote 1 down vote accepted

try

yum search kernel-headers

gives:

arm-gp2x-linux-kernel-headers.noarch : Kernel headers for Cross Compiling to
                                     : arm-gp2x-linux
kernel-headers.x86_64 : Header files for the Linux kernel for use by glibc
link|improve this answer
1  
That Returns Warning: No matches found for: kernel-headers No Matches found – Stewart Dick Jun 29 '11 at 13:14
1  
If the problem was the yum.conf file as you indicated in a follow-on comment, why did you mark this answer as correct instead of xgMz's answer below? – Guerry Jan 19 at 21:30
feedback

Your system is probably configured to exclude the kernel packages.

try:

sudo vi /etc/yum.conf

then comment (or remove the 'kernel*' part):

#exclude=kernel*

Then you should be able to do:

sudo yum install kernel-headers
link|improve this answer
This pointed to the real problem for me. IT team excluded the kernel-headers to prevent automatic kernel updates in part of their roll out process. – Guerry Jan 19 at 21:31
I'm voting this answer up since it put me on the right track. A comment in /etc/yum.conf referenced repo definition files and in one of those (/etc/yum.repos.d/reponame.repo) I found this exclusion. Thanks – phatblat Feb 2 at 20:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.