<?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>Debian Tutorials &#187; Kernel</title>
	<atom:link href="http://www.debiantutorials.com/tag/kernel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.debiantutorials.com</link>
	<description>Copy/Paste tutorials for Debian based Linux distros</description>
	<lastBuildDate>Tue, 27 Dec 2011 01:15:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Using more than 4 GB RAM on Debian etch 32bit</title>
		<link>http://www.debiantutorials.com/using-more-than-4-gb-ram-on-debian-etch-32bit/</link>
		<comments>http://www.debiantutorials.com/using-more-than-4-gb-ram-on-debian-etch-32bit/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 22:58:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Lenny]]></category>
		<category><![CDATA[etch]]></category>
		<category><![CDATA[lenny]]></category>

		<guid isPermaLink="false">http://debiantutorials.net/using-more-than-4-gb-ram-on-debian-etch-32bit/</guid>
		<description><![CDATA[By default Debian etch 32bit allows a maximum of 4 GB RAM. The limit can be raised up to 64 GB with a single apt-get command / kerenl update: apt-get install linux-image-2.6-686-bigmem That's it, reboot your system and you will be able to install up to 64GB of RAM to your system.]]></description>
			<content:encoded><![CDATA[<p>By default Debian etch 32bit allows a maximum of 4 GB RAM. The limit can be raised up to 64 GB with a single apt-get command / kerenl update:</p>
<p><code>apt-get install linux-image-2.6-686-bigmem</code></p>
<p>That's it, reboot your system and you will be able to install up to 64GB of RAM to your system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.debiantutorials.com/using-more-than-4-gb-ram-on-debian-etch-32bit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Compile the Kernel on Debian etch</title>
		<link>http://www.debiantutorials.com/compile-the-kernel-on-debian-etch/</link>
		<comments>http://www.debiantutorials.com/compile-the-kernel-on-debian-etch/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 17:41:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Lenny]]></category>
		<category><![CDATA[etch]]></category>

		<guid isPermaLink="false">http://debiantutorials.net/compile-the-kernel-on-debian-etch/</guid>
		<description><![CDATA[Compiling the kernel from source on Debian is actually pretty simple thing to do. This guide has been tested on standard etch installation but will probably work on other versions and debian-like operating systems. The system is easy to break if not done right, compile and install the kernel at your own risk! Install required [...]]]></description>
			<content:encoded><![CDATA[<p>Compiling the kernel from source on Debian is actually pretty simple thing to do.</p>
<p>This guide has been tested on standard etch installation but will probably work on other versions and debian-like operating systems. The system is easy to break if not done right, compile and install the kernel at your own risk!</p>
<p><strong>Install required packages</strong></p>
<p><code>apt-get install kernel-package libncurses5-dev fakeroot wget build-essential</code></p>
<p><span id="more-12"></span><strong>Download Kernel sources</strong></p>
<p>You can see a list of available kernels here: <a href="http://www.eu.kernel.org/pub/linux/kernel/v2.6/">http://www.eu.kernel.org/pub/linux/kernel/v2.6/</a></p>
<p><code>cd /usr/src<br />
wget http://www.eu.kernel.org/pub/linux/kernel/v2.6/linux-2.6.26.tar.gz<br />
</code></p>
<p><strong>Extract the kernel and create a symlink</strong></p>
<p><code>tar zxvf linux-2.6.26.tar.gz<br />
ln -s linux-2.6.26 linux<br />
cd /usr/src/linux<br />
</code></p>
<p><strong>Configure kernel</strong></p>
<p>Copy the old config file and configure the kernel</p>
<p><code>make clean &amp;&amp; make mrproper<br />
cp /boot/config-`uname -r` ./.config<br />
make menuconfig<br />
</code></p>
<p>In the menu do this to load the old configuration file</p>
<p><code>1. Load an Alternate Configuration File<br />
2. Type .config if not already in the textbox<br />
3. Ok<br />
4. Do any changes to the kernel modules<br />
5. Click Exit<br />
6. Click Yes when asked if you want to save<br />
</code></p>
<p><strong>Build the kernel</strong></p>
<p><code>make-kpkg clean<br />
fakeroot make-kpkg --initrd --append-to-version=-custom kernel_image kernel_headers<br />
</code></p>
<p>The build can take long time so be patient</p>
<p><strong>Install the new kernel</strong></p>
<p>Get a list of files in the /usr/src to find correct deb files</p>
<p><code>cd /usr/src<br />
ls -l<br />
</code></p>
<p>Do the actual install with dpkg. You will always have to install the linux-image package but linux-headers are optional and are only available if already installed on your system.</p>
<p><code>dpkg -i linux-headers-2.6.26-custom_2.6.26-custom-10.00.Custom_i386.deb<br />
dpkg -i linux-image-2.6.26-custom_2.6.26-custom-10.00.Custom_i386.deb<br />
</code></p>
<p><strong>Reboot</strong></p>
<p><code>reboot<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.debiantutorials.com/compile-the-kernel-on-debian-etch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
