<?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>Doing &#38; Done &#187; linux kernel 2.6.30.4</title>
	<atom:link href="http://doing.liduan.com/tag/linux-kernel-2-6-30-4/feed/" rel="self" type="application/rss+xml" />
	<link>http://doing.liduan.com</link>
	<description>Record and Store</description>
	<lastBuildDate>Sat, 29 Oct 2011 11:13:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>clean kernel temp files</title>
		<link>http://doing.liduan.com/2009/08/12/397/</link>
		<comments>http://doing.liduan.com/2009/08/12/397/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 14:02:16 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/397/</guid>
		<description><![CDATA[clean kernel temp files #make clean]]></description>
			<content:encoded><![CDATA[<p>clean kernel temp files</p>
<pre class="brush: bash">
#make clean
</pre>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/397/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>next, install modules of new kernel:</title>
		<link>http://doing.liduan.com/2009/08/12/396/</link>
		<comments>http://doing.liduan.com/2009/08/12/396/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 14:00:41 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/396/</guid>
		<description><![CDATA[next, install modules of new kernel: #make modules_install then, generate a image for new kernel. #cd /lib/modules #mkinitramfs -o initrd.img-2.6.30.4 2.6.30.4 #mv initrd.img-2.6.30.4 /boot edit menu.lst file for grub booter, add following: title Ubuntu 8.04.3 LTS, kernel 2.6.30.4 root (hd0,2) kernel /boot/vmlinuz root=UUID=98f69044-be12-4dde-95df-358dca35c632 ro quiet splash initrd /boot/initrd.img-2.6.30.4 quiet]]></description>
			<content:encoded><![CDATA[<p>next, install modules of new kernel:</p>
<pre class="brush: bash">
#make modules_install
</pre>
<p>then, generate a image for new kernel.</p>
<pre class="brush: bash">
#cd /lib/modules
#mkinitramfs -o initrd.img-2.6.30.4 2.6.30.4
#mv initrd.img-2.6.30.4 /boot
</pre>
<p>edit menu.lst file for grub booter, add following:</p>
<pre class="brush: bash">
title		Ubuntu 8.04.3 LTS, kernel 2.6.30.4
root		(hd0,2)
kernel		/boot/vmlinuz root=UUID=98f69044-be12-4dde-95df-358dca35c632 ro quiet splash
initrd		/boot/initrd.img-2.6.30.4
quiet
</pre>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/396/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>install new linux kernel 2.6.30.4 using &#8220;make install&#8221;,</title>
		<link>http://doing.liduan.com/2009/08/12/395/</link>
		<comments>http://doing.liduan.com/2009/08/12/395/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 13:45:32 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/395/</guid>
		<description><![CDATA[install new linux kernel 2.6.30.4 using &#8220;make install&#8221;, system should show following detail: root@ibm-laptop:/usr/src/linux-2.6.30.4# make install sh /usr/src/linux-2.6.30.4/arch/x86/boot/install.sh 2.6.30.4 arch/x86/boot/bzImage \ System.map &#8220;/boot&#8221; In order to use the new kernel image you have just installed, you will need to reboot the machine. First, however, you will need to either make a bootable floppy diskette, re-run [...]]]></description>
			<content:encoded><![CDATA[<p>install new linux kernel 2.6.30.4 using &#8220;make install&#8221;, system should show following detail:<br />
root@ibm-laptop:/usr/src/linux-2.6.30.4# make install<br />
sh /usr/src/linux-2.6.30.4/arch/x86/boot/install.sh 2.6.30.4 arch/x86/boot/bzImage \<br />
                System.map &#8220;/boot&#8221;<br />
In order to use the new kernel image you have just installed, you<br />
will need to reboot the machine.  First, however, you will need to<br />
either make a bootable floppy diskette, re-run LILO, or have GRUB<br />
installed.</p>
<p>Checking for ELILO&#8230;No</p>
<p>GRUB is installed. To automatically switch to new kernels, point your<br />
default entry in menu.lst to /boot/vmlinuz-2.6.30.4</p>
<p>====================<br />
GRUB menu configuration file menu.lst should be update.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/395/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>configuration and update to linux kernel&#8230;</title>
		<link>http://doing.liduan.com/2009/08/12/configuration-and-update-to-linux-kernel/</link>
		<comments>http://doing.liduan.com/2009/08/12/configuration-and-update-to-linux-kernel/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 11:28:35 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/configuration-and-update-to-linux-kernel/</guid>
		<description><![CDATA[configuration and update to linux kernel 2.6.30.4 using root account do following. #make mrproper #check kernel .o and .config files next configuration kernel. there are three kinds of configuration UI. #make config #Text UI #make menuconfig #Text graph UI #make xconfig before using menuconfig mode, ncurses should be installed. #apt-get install libncurses* and before using [...]]]></description>
			<content:encoded><![CDATA[<p>configuration and update to linux kernel 2.6.30.4</p>
<p>using root account do following.</p>
<pre class="brush: bash">
#make mrproper #check kernel .o and .config files
</pre>
<p>next configuration kernel. there are three kinds of configuration UI.</p>
<pre class="brush: bash">
#make config #Text UI
</pre>
<pre class="brush: bash">
#make menuconfig #Text graph UI
</pre>
<pre class="brush: bash">
#make xconfig
</pre>
<p>before using menuconfig mode, ncurses should be installed. </p>
<pre class="brush: bash">
#apt-get install libncurses*
</pre>
<p>and before using xconfig mode, following package should be installed. </p>
<pre class="brush: bash">
#apt-get install libqt3-headers libqt3-mt-dev
</pre>
<p>after all configuration work done. using make command to compile kernel.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/configuration-and-update-to-linux-kernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>get recent linux kernel (2.6.30.4) [code&#8230;</title>
		<link>http://doing.liduan.com/2009/08/12/get-recent-linux-kernel-2-6-30-4-code/</link>
		<comments>http://doing.liduan.com/2009/08/12/get-recent-linux-kernel-2-6-30-4-code/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 11:04:12 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/get-recent-linux-kernel-2-6-30-4-code/</guid>
		<description><![CDATA[get recent linux kernel (2.6.30.4) $sudo wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.30.4.tar.gz /usr/src $sudo tar xvf /usr/src/linux-2.6.30.4.tar.gz if linux-2.6.30.4.tar.bz2 package, using command: $sudo tar jxvf /usr/src/linux-2.6.30.4.tar.bz2]]></description>
			<content:encoded><![CDATA[<p>get recent linux kernel (2.6.30.4)</p>
<pre class="brush: bash">
$sudo wget <a href="http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.30.4.tar.gz" rel="nofollow">http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.30.4.tar.gz</a> /usr/src
$sudo tar xvf /usr/src/linux-2.6.30.4.tar.gz
</pre>
<p>if linux-2.6.30.4.tar.bz2 package, using command:</p>
<pre class="brush: bash">
$sudo tar jxvf /usr/src/linux-2.6.30.4.tar.bz2
</pre>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/get-recent-linux-kernel-2-6-30-4-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>open root account in ubuntu: [code lang=&#8230;</title>
		<link>http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/</link>
		<comments>http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 10:49:30 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux kernel 2.6.30.4]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/</guid>
		<description><![CDATA[open root account in ubuntu: $sudo passwd root then, set new password for root.]]></description>
			<content:encoded><![CDATA[<p>open root account in ubuntu:</p>
<pre class="brush: bash">
$sudo passwd root
</pre>
<p>then, set new password for root.</p>]]></content:encoded>
			<wfw:commentRss>http://doing.liduan.com/2009/08/12/open-root-account-in-ubuntu-code-lang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

