<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Compiling a new kernel</title>
	<atom:link href="http://www.designlegion.com/linux/compiling-a-new-kernel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designlegion.com/linux/compiling-a-new-kernel/</link>
	<description></description>
	<pubDate>Tue, 06 Jan 2009 05:46:59 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Lewis</title>
		<link>http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-87</link>
		<dc:creator>Lewis</dc:creator>
		<pubDate>Thu, 16 Nov 2006 20:21:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-87</guid>
		<description>Matt,
When you installed Slackware, you most likely used the default kernel which has great support for IDE based drives but limited support for SATA drives. Using my config enabled the support for SATA (sda) but your system is still configured for IDE (hda). You got the kernel panic because the kernel was looking for /dev/sda in lilo.conf but you fixed that. 

The next problem is you can only mount in read-only because the file systems table (fstab) is looking to mount a /dev/hda drive. You need to edit &lt;strong&gt;/etc/fstab&lt;/strong&gt; and change the hda values to sda. Doing that will allow your system to mount the correct drive with the correct configuration, but...

Your drive is read-only so you cannot save changes to fstab. You will need to insert the Slackware CD/DVD and reboot. At the boot prompt type: &lt;code&gt;huge26.s&lt;/code&gt;
When prompted, select your keyboard map and login as &lt;strong&gt;root&lt;/strong&gt;. From here, you can mount your linux filesystem &lt;strong&gt;/dev/sda3&lt;/strong&gt; with this command:
&lt;code&gt;# mount /dev/sda3 /mnt&lt;/code&gt;
Now we can edit &lt;strong&gt;fstab&lt;/strong&gt; with &lt;strong&gt;pico&lt;/strong&gt; or &lt;strong&gt;vi&lt;/strong&gt; (I use pico):
&lt;code&gt;# pico /mnt/etc/fstab&lt;/code&gt;
Here, you'll see the drive/partition configurations, just replace any &lt;strong&gt;hda&lt;/strong&gt; with &lt;strong&gt;sda&lt;/strong&gt;. When you're done, press CTRL+O, then hit enter to write the file to the harddrive. Press CTRL+X to exit and reboot the system.

You should be booting normally.</description>
		<content:encoded><![CDATA[<p>Matt,<br />
When you installed Slackware, you most likely used the default kernel which has great support for IDE based drives but limited support for SATA drives. Using my config enabled the support for SATA (sda) but your system is still configured for IDE (hda). You got the kernel panic because the kernel was looking for /dev/sda in lilo.conf but you fixed that. </p>
<p>The next problem is you can only mount in read-only because the file systems table (fstab) is looking to mount a /dev/hda drive. You need to edit <strong>/etc/fstab</strong> and change the hda values to sda. Doing that will allow your system to mount the correct drive with the correct configuration, but&#8230;</p>
<p>Your drive is read-only so you cannot save changes to fstab. You will need to insert the Slackware CD/DVD and reboot. At the boot prompt type: <code>huge26.s</code><br />
When prompted, select your keyboard map and login as <strong>root</strong>. From here, you can mount your linux filesystem <strong>/dev/sda3</strong> with this command:<br />
<code># mount /dev/sda3 /mnt</code><br />
Now we can edit <strong>fstab</strong> with <strong>pico</strong> or <strong>vi</strong> (I use pico):<br />
<code># pico /mnt/etc/fstab</code><br />
Here, you&#8217;ll see the drive/partition configurations, just replace any <strong>hda</strong> with <strong>sda</strong>. When you&#8217;re done, press CTRL+O, then hit enter to write the file to the harddrive. Press CTRL+X to exit and reboot the system.</p>
<p>You should be booting normally.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-86</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Thu, 16 Nov 2006 19:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-86</guid>
		<description>I seem to be having some trouble and im not quite sure why.  When i do a recompile of the kernel with 2.6.*, if i set lilo.conf to /dev/hda3, it wont boot (Kernel Panic, blah, root(3,3) not found).  So i figured out that lilo.conf needed to be changed to /dev/sda3, but then the problem is that e2fsck still tries to check /dev/hda3 (which does not exist becuase it is seen as /dev/sda3) and wont let me boot anything but read only mode.  hmph.  
I used:
kernel 2.6.17.13 with your config
on a dell m1210 (nearly the same hardware config as yours)</description>
		<content:encoded><![CDATA[<p>I seem to be having some trouble and im not quite sure why.  When i do a recompile of the kernel with 2.6.*, if i set lilo.conf to /dev/hda3, it wont boot (Kernel Panic, blah, root(3,3) not found).  So i figured out that lilo.conf needed to be changed to /dev/sda3, but then the problem is that e2fsck still tries to check /dev/hda3 (which does not exist becuase it is seen as /dev/sda3) and wont let me boot anything but read only mode.  hmph.<br />
I used:<br />
kernel 2.6.17.13 with your config<br />
on a dell m1210 (nearly the same hardware config as yours)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lewis</title>
		<link>http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-74</link>
		<dc:creator>Lewis</dc:creator>
		<pubDate>Sat, 11 Nov 2006 02:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-74</guid>
		<description>Glad it worked for you. You should have bluetooth... blue led under the power indicators. If not, it won't be a problem as the bluetooth modules won't cause any compatibility issues.</description>
		<content:encoded><![CDATA[<p>Glad it worked for you. You should have bluetooth&#8230; blue led under the power indicators. If not, it won&#8217;t be a problem as the bluetooth modules won&#8217;t cause any compatibility issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: colin</title>
		<link>http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-65</link>
		<dc:creator>colin</dc:creator>
		<pubDate>Sat, 11 Nov 2006 00:31:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-65</guid>
		<description>thank you so much man it worked</description>
		<content:encoded><![CDATA[<p>thank you so much man it worked</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: colin</title>
		<link>http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-64</link>
		<dc:creator>colin</dc:creator>
		<pubDate>Sat, 11 Nov 2006 00:25:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-64</guid>
		<description>actually i think it keeps doin it over and over again...i dont have bluetooth...can that be the problem ..</description>
		<content:encoded><![CDATA[<p>actually i think it keeps doin it over and over again&#8230;i dont have bluetooth&#8230;can that be the problem ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: colin</title>
		<link>http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-63</link>
		<dc:creator>colin</dc:creator>
		<pubDate>Sat, 11 Nov 2006 00:22:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-63</guid>
		<description>wow its takin like 10 times longer to compile than usual...i must have been doin it wrong</description>
		<content:encoded><![CDATA[<p>wow its takin like 10 times longer to compile than usual&#8230;i must have been doin it wrong</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lewis</title>
		<link>http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-62</link>
		<dc:creator>Lewis</dc:creator>
		<pubDate>Fri, 10 Nov 2006 23:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-62</guid>
		<description>&lt;strong&gt;/usr/src/linux&lt;/strong&gt; is only linked to &lt;strong&gt;/usr/src/linux-2.6.17&lt;/strong&gt; or whatever the kernel source version is. When the kernel modules are installed, a link will be created from &lt;strong&gt;/lib/modules/build&lt;/strong&gt; to &lt;strong&gt;/usr/src/linux&lt;/strong&gt;.

Another thing, make sure you install the &lt;strong&gt;kernel headers&lt;/strong&gt; for 2.6.17.13. Check your Slackware 11 cd in the '&lt;strong&gt;/extra/linux-2.6.17.13&lt;/strong&gt;' folder.</description>
		<content:encoded><![CDATA[<p><strong>/usr/src/linux</strong> is only linked to <strong>/usr/src/linux-2.6.17</strong> or whatever the kernel source version is. When the kernel modules are installed, a link will be created from <strong>/lib/modules/build</strong> to <strong>/usr/src/linux</strong>.</p>
<p>Another thing, make sure you install the <strong>kernel headers</strong> for 2.6.17.13. Check your Slackware 11 cd in the &#8216;<strong>/extra/linux-2.6.17.13</strong>&#8216; folder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: colin</title>
		<link>http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-61</link>
		<dc:creator>colin</dc:creator>
		<pubDate>Fri, 10 Nov 2006 23:47:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-61</guid>
		<description>thanks trying it now...i have one more question... Does the link linux in /usr/src/linux have any other links to like another system folder other than the link we make...because i did an install with out kernel sources..because i couldnt config any other kernel than the one supplied 2.4.3.3 or somethin...</description>
		<content:encoded><![CDATA[<p>thanks trying it now&#8230;i have one more question&#8230; Does the link linux in /usr/src/linux have any other links to like another system folder other than the link we make&#8230;because i did an install with out kernel sources..because i couldnt config any other kernel than the one supplied 2.4.3.3 or somethin&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lewis</title>
		<link>http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-60</link>
		<dc:creator>Lewis</dc:creator>
		<pubDate>Fri, 10 Nov 2006 23:47:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-60</guid>
		<description>None of those differences will affect the kernel booting process. I have the nVidia card, the Intel wireless, Intel audio, same host and pci bridges. I just need to post an updated lspci. Try my config though, it should fix all your problems.

It's most likely you just missed an important option while constructing your config file.</description>
		<content:encoded><![CDATA[<p>None of those differences will affect the kernel booting process. I have the nVidia card, the Intel wireless, Intel audio, same host and pci bridges. I just need to post an updated lspci. Try my config though, it should fix all your problems.</p>
<p>It&#8217;s most likely you just missed an important option while constructing your config file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: colin</title>
		<link>http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-59</link>
		<dc:creator>colin</dc:creator>
		<pubDate>Fri, 10 Nov 2006 23:40:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.designlegion.com/linux/compiling-a-new-kernel/#comment-59</guid>
		<description>00:00.0 Host brige: Intel Corporation Mobile 945GM/PM/GMS/940GML and 945GT Express Memory controller Hub (rev 03)
00:01.0 PCI brige: Intel Corporation Mobile 945GM/PM/GMS/940GML and 945GT  Express PCI Express Root Port (rev 03)
00:1b.0 Audio device: Intel Coporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)
0c:00.0 Network Controller : Intel Corporation PRO/Wireless 3945ABG Network connection (rev 02) 
01:00.0 VGA compatible controller: nVidia Corporation GeForce Go 7400 (rev  a1) 

Those were the only differences from your's...maybe that will help...</description>
		<content:encoded><![CDATA[<p>00:00.0 Host brige: Intel Corporation Mobile 945GM/PM/GMS/940GML and 945GT Express Memory controller Hub (rev 03)<br />
00:01.0 PCI brige: Intel Corporation Mobile 945GM/PM/GMS/940GML and 945GT  Express PCI Express Root Port (rev 03)<br />
00:1b.0 Audio device: Intel Coporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01)<br />
0c:00.0 Network Controller : Intel Corporation PRO/Wireless 3945ABG Network connection (rev 02)<br />
01:00.0 VGA compatible controller: nVidia Corporation GeForce Go 7400 (rev  a1) </p>
<p>Those were the only differences from your&#8217;s&#8230;maybe that will help&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
