Redhat enterprise Linux / CentOS installing kernel source code

by Vivek Gite on August 15, 2007 · 6 comments

Q. How do I install Linux kernel source code and headers under RHEL 5 or CentOS 5 Linux operating system?

A. Both CentOS and RHEL 5 includes following packages:

a) Kernel-headers : It includes the C header files that specify the interface between the Linux kernel and userspace libraries and programs. The header files define structures and constants that are needed for building most standard programs and are also needed for rebuilding the glibc package.

b) kernel-devel : This package provides kernel headers and makefiles sufficient to build modules against the kernel package.

c) Actual kernel source code : You can always download actual source code here. Look for kernel*.rpm file.

Rhel / CentOS 5 install kernel headers

Use yum command as follows:
# yum install kernel-devel Kernel-headers

Install kernel source code

Type the command as follows:
# cd /tmp
# wget ftp://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/kernel-2.6.18-8.1.8.el5.src.rpm
# rpm -ivh kernel-2.6.18-8.1.8.el5.src.rpm

Note change version number as per your current kernel.

For recompiling or adding a new module or device driver you just need kernel-devel and Kernel-headers packages. To rebuilt kernel rpm goto /usr/src/redhat/SPECS directory, modify kernel spec file and use rpmbuild command to rebuild rhel/centos kernel rpm.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 6 comments… read them below or add one }

1 John September 24, 2007

The various source rpm’s referenced in the article such as kernel-2.6.18-8.1.8.el5.src.rpm do not contain the source but rather patches to the source…

Reply

2 John September 24, 2007

Upon further examination, the *.src.rpm does have the source in a tarball within it. You’re expected to build the source tree with the rpmbuild command. A command reference would be http://kbase.redhat.com/faq/FAQ_85_5109.shtm

Keep in mind that you will need the unifdef package which is not installed by default. You’ll find it on the third installation CD.

Reply

3 Shraddha January 17, 2009

hi,
i want the source code of Linux.
i don’t know exact location for it.
could i know about this?
thank you.

Reply

4 Noufal February 14, 2009

I want source code of LinuxKernel and Redhat linux

Reply

5 Rob May 13, 2009

I think you have a typo in your example.

# yum install kernel-devel Kernel-headers

has a capital “K” in Kernel-headers, but that didn’t work for me. I changed it to a lowercase “k” and it worked just fine.

Reply

6 anybody June 25, 2009

Just look at the src.rpm for the source code. You can extract it via command

rpm2cpio kernel-bla-bla-bla.src.rpm | cpio -idvm

and then a simple

ls *.tar.{bz2|gz}

will take you to the source :)

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 8 + 2 ?
Please leave these two fields as-is:
IMPORTANT! To be able to proceed, you need to solve the simple math so we know that you are a human and not a script.




Previous post:

Next post: