Redhat enterprise Linux / CentOS installing kernel source code

by Vivek Gite · 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:

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 6 comments… read them below or add one }

1 John 09.24.07 at 8:44 pm

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…

2 John 09.24.07 at 10:07 pm

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.

3 Shraddha 01.17.09 at 3:53 pm

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

4 Noufal 02.14.09 at 2:14 pm

I want source code of LinuxKernel and Redhat linux

5 Rob 05.13.09 at 4:35 pm

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.

6 anybody 06.25.09 at 7:39 am

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 :)

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous FAQ:

Next FAQ:

nixCraft FAQ PDF Collection Now Available To All