<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>compile new kernel &#8211; lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</title>
	<atom:link href="https://lifelinux.com/tag/compile-new-kernel/feed/" rel="self" type="application/rss+xml" />
	<link>https://lifelinux.com</link>
	<description>All About Linux !</description>
	<lastBuildDate>Thu, 20 Mar 2014 04:27:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.3</generator>
	<item>
		<title>How To Compile/ Install New Kernel 3.13.6 In CentOS 6.5</title>
		<link>https://lifelinux.com/how-to-compile-install-new-kernel-3-13-6-in-centos-6-5/</link>
					<comments>https://lifelinux.com/how-to-compile-install-new-kernel-3-13-6-in-centos-6-5/#comments</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Thu, 20 Mar 2014 03:49:29 +0000</pubDate>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[compile kernel 3]]></category>
		<category><![CDATA[compile new kernel]]></category>
		<category><![CDATA[kernel 3.13.6]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=1894</guid>

					<description><![CDATA[<p>Here in this post I will explain how to compile and install Linux Kernel 3.13.6 in CentOS 6.5. Linux Kernel 3.3.16 stable latest version has released 2014-03-07 and you can download it from kernel.org. Follow the step by step to compile and install Linux Kernel 3.13.6 in your system Step 1: To compile Linux Kernel [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-compile-install-new-kernel-3-13-6-in-centos-6-5/">How To Compile/ Install New Kernel 3.13.6 In CentOS 6.5</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p>Here in this post I will explain how to compile and install Linux Kernel 3.13.6 in CentOS 6.5. Linux Kernel 3.3.16 stable latest version has released 2014-03-07 and you can download it from kernel.org.<span id="more-1894"></span></p>
<p>Follow the step by step to compile and install Linux Kernel 3.13.6 in your system</p>
<p><strong>Step 1:</strong><br />
To compile Linux Kernel the following are required to be installed. Login as root and type the following command</p>
<pre># yum install make wget gcc ncurses-devel bc perl dracut-tools.noarch -y</pre>
<p><strong>Step 2:</strong><br />
Download the Linux Kernel 3.13.6 from kernel.org or by using the below command</p>
<pre># wget https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.13.6.tar.gz</pre>
<p>And extract the tar file run the following command</p>
<pre># tar zxvf linux-3.13.6.tar.gz
# cd linux-3.13.6</pre>
<p><strong>Step 3:</strong></p>
<pre># make menuconfig</pre>
<p>The above command is used to configure the Linux kernel. Once you execute the command, you will get a pop up window with the list of menus and you can select the items for the new configuration. If you like to have your existing configuration then run the below command.</p>
<pre># make oldconfig</pre>
<p><strong>Step 4:</strong><br />
Type the following command to compile the Linux Kernel</p>
<pre># make</pre>
<p>The above command is used to compile the Linux Kernel. It will take some time to complete it, approximately 60 min to 120 min it depends on your system configuration.</p>
<p><strong>Step 5:</strong><br />
Type the following command to install new Kernel into your system</p>
<pre># make modules_install install</pre>
<p>The above command will install the Linux Kernel and it will create some files under /boot/ directory and it will automatically make a entry in your grub.conf.<br />
Some files are:</p>
<pre># ls /boot/ | grep 3.13.6
initramfs-3.13.6.img
System.map-3.13.6
vmlinuz-3.13.6</pre>
<p>To make it default just modify the grub.conf or menu.lst under “/boot/grub/” directory. Open the file using below command.</p>
<pre>vi /boot/grub/grub.conf</pre>
<p>Sample output</p>
<pre>default=1
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title CentOS (2.6.32-431.5.1.el6.x86_64)
        root (hd0,0)
        kernel /vmlinuz-2.6.32-431.5.1.el6.x86_64 ro root=/dev/mapper/vg_firewall-lv_root nomodeset rd_NO_LUKS LANG=en_US.UTF-8 rd_LVM_LV=vg_firewall/lv_root rd_NO_MD rd_LVM_LV=vg_firewall/lv_swap SYSFONT=latarcyrheb-sun16 crashkernel=auto  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quiet
        initrd /initramfs-2.6.32-431.5.1.el6.x86_64.img
title CentOS (3.13.6)
        root (hd0,0)
        kernel /vmlinuz-3.13.6 ro root=/dev/mapper/vg_firewall-lv_root nomodeset rd_NO_LUKS LANG=en_US.UTF-8 rd_LVM_LV=vg_firewall/lv_root rd_NO_MD rd_LVM_LV=vg_firewall/lv_swap SYSFONT=latarcyrheb-sun16 crashkernel=auto  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quiet
        initrd /initramfs-3.13.6.img
title CentOS (2.6.32-358.el6.x86_64)
        root (hd0,0)
        kernel /vmlinuz-2.6.32-358.el6.x86_64 ro root=/dev/mapper/vg_firewall-lv_root nomodeset rd_NO_LUKS LANG=en_US.UTF-8 rd_LVM_LV=vg_firewall/lv_root rd_NO_MD rd_LVM_LV=vg_firewall/lv_swap SYSFONT=latarcyrheb-sun16 crashkernel=auto  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quiet
        initrd /initramfs-2.6.32-358.el6.x86_64.img</pre>
<p>Just check the entry for CentOS 6.5, if it is in second place then change default=1<br />
Final, type the following command to reboot server</p>
<pre># reboot</pre>
<p>After booting open a terminal and type &#8220;uname -a&#8221;</p>
<pre># uname -a
Linux Firewall 3.13.6 #1 SMP Wed Mar 12 20:49:55 ICT 2014 x86_64 x86_64 x86_64 GNU/Linux</pre>
<g:plusone href="https://lifelinux.com/how-to-compile-install-new-kernel-3-13-6-in-centos-6-5/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-compile-install-new-kernel-3-13-6-in-centos-6-5/">How To Compile/ Install New Kernel 3.13.6 In CentOS 6.5</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/how-to-compile-install-new-kernel-3-13-6-in-centos-6-5/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
