<?xml version="1.0"?>
<rss version="2.0">
	<channel>
		<title>Gentoo Linux - Kernel Configuration - Modules</title>
		<link>http://www.allegro.cc/forums/view/594244</link>
		<description>Allegro.cc Forum Thread</description>
		<webMaster>matthew@allegro.cc (Matthew Leverton)</webMaster>
		<lastBuildDate>Thu, 13 Dec 2007 01:14:21 +0000</lastBuildDate>
	</channel>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>This is somewhat of a <i>part 2</i> thread for my Gentoo installation (part 1 can be found <a href="http://www.allegro.cc/forums/thread/594146">here</a>). Thus far, I have managed to &quot;install&quot; a base system, however, it won&#39;t boot. By the time I finished setting up the bootloader it was like 11:30 PM Sunday night (and I had already rushed the kernel - built it before I really understood what was needed) so I had to shutdown and put it on hold. I didn&#39;t pay too much attention to why it wouldn&#39;t boot because it was so late, but IIRC grub didn&#39;t seem to recognize one of the partitions.</p><p>It could have been that the kernel didn&#39;t know what the LVM2 partition (/dev/sdb4) was, which wouldn&#39;t surprise me because I was pretty clueless about configuring modules in the kernel&#39;s <tt>make menuconfig</tt>, but if memory serves grub indicated the root (/) partition (/dev/sdb3) which is ext3. <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> As you can tell, I&#39;m not really sure where grub stands down and the kernel takes over, but after failing to boot whichever partition I was returned to the grub boot menu so I assume grub was still in control...</p><p>Either way, my current dilemma is kernel modules and determining which ones are required for my system and which ones may be used. As I understand it, certain modules need to be compiled into the kernel and others can be compiled separately and loaded after the kernel boots. I seem to be under the impression that modules built into the kernel will perform faster than those loaded outside of the kernel. If this is right should I compile all of the modules used by my system into the kernel (I guess in theory if something changed I could recompile the kernel)?</p><p>For the record, when told to add modules to <tt>/etc/modules.autoload.d/<i>&lt;kernel_version&gt;</i></tt> I discovered that only <b>one</b> module existed for my kernel. I&#39;m assuming that these were built along with the kernel, but since I didn&#39;t know what to select only the one ended up being built. <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /></p><p>I could go the <tt>genkernel</tt> route, but I&#39;d rather learn to understand and identify modules. When I get home tonight I&#39;ll probably reboot the installation CD, <tt>chroot</tt> back into my environment, and try again. <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Mon, 03 Dec 2007 21:10:53 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>If you can&#39;t get past GRUB then I think that it cannot find a kernel to boot. Most common problem is a typo in grub.conf, anotherone is forgetting to do &quot;make install&quot; in kernel source dir while /boot is mounted
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (HoHo)</author>
		<pubDate>Mon, 03 Dec 2007 21:16:33 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I seem to be under the impression that modules built into the kernel will perform faster than those loaded outside of the kernel.
</p></div></div><p>No, the kernel links them into the kernel in the same way a DLL is loaded. No penalties (except for loading times). In fact, you only need to store modules built into the kernel if the kernel needs those modules to access /lib/modules. In other words, you should build in your hard disk controller and filesystem, and the rest can be modules.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I could go the genkernel route, but I&#39;d rather learn to understand and identify modules.
</p></div></div><p>Genkernel won&#39;t save you form that. I actually don&#39;t really find the script that useful, it just creates a more heavyweight boot process.</p><p>Could you show what the message your system gave was, and please post /etc/fstab and /boot/grub/grub.conf?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Mon, 03 Dec 2007 21:17:41 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">HoHo said:</div><div class="quote"><p>
If you can&#39;t get past GRUB then I think that it cannot find a kernel to boot. Most common problem is a typo in grub.conf, anotherone is forgetting to do &quot;make install&quot; in kernel source dir while /boot is mounted
</p></div></div><p>
I&#39;ll double check, but I&#39;m 90% confident that grub.conf is accurate. The Gentoo Handbook doesn&#39;t actually <tt>make install</tt> the kernel. Instead, it does <tt>make &amp;&amp; make install_modules</tt> and then manually copies the kernel image into /boot.</p><p><tt>cd /usr/src/linux/</tt><br /><tt>make menuconfig</tt><br /><tt>make &amp;&amp; make install_modules</tt><br /><tt>cp arch/<i>&lt;arch&gt;</i>/boot/bzImage /boot/<i>&lt;kernel&gt;</i></tt></p><p>It&#39;s difficult to be confident that I did <tt>make &amp;&amp; make install_modules</tt> at the appropriate time because I entered and reentered <tt>make menuconfig</tt> 3 or 4 times trying to make sense of which modules to build (and which ones were being built where). <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> It&#39;s possible that I built at the wrong time, etc... It&#39;s also very likely that my kernel is missing modules and that my system itself is lacking modules.
</p><div class="quote_container"><div class="title">CGamesPlay said:</div><div class="quote"><p>
No, the kernel links them into the kernel in the same way a DLL is loaded. No penalties (except for loading times). In fact, you only need to store modules built into the kernel if the kernel needs those modules to access /lib/modules. In other words, you should build in your hard disk controller and filesystem, and the rest can be modules.
</p></div></div><p>
That makes sense. <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" /> Thanks. So perhaps the problem isn&#39;t the kernel, but the lack of external modules (because only one existed there was only one I could add to <tt>/etc/modules.autoload.d/<i>&lt;kernel_version&gt;</i></tt> - which was scsi related, not that it necessarily matters <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />). <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p><div class="quote_container"><div class="title">CGamesPlay said:</div><div class="quote"><p>
Could you show what the message your system gave was, and please post /etc/fstab and /boot/grub/grub.conf?
</p></div></div><p>
I definitely will as soon as I get home.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Mon, 03 Dec 2007 21:24:04 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>You should be using the correct make options for the kernel:;)
</p><div class="source-code snippet"><div class="inner"><pre>make menuconfig
make <span class="k3">&amp;</span><span class="k3">&amp;</span> make modules_install <span class="k3">&amp;</span><span class="k3">&amp;</span> make install
</pre></div></div><p>

Also, post the output of:
</p><div class="source-code snippet"><div class="inner"><pre>cd <span class="k3">/</span>boot<span class="k3">/</span>
dir <span class="k3">*</span> <span class="k3">-</span>R
</pre></div></div><p>

You can usually just use vmlinuz, but I prefer to actually fully qualify the name.8-)</p><p>As for modules, I prefer to find out which ones I need and build those into the kernel. Why keep these out? Granted there are times when you may need to do this, but I would imagine that building them into the kernel is more secure....it is in the kernel, so who can hack it?;)::)</p><p>Edit:<br />Also, when you chroot, be careful that everything is correct. You can think you are chrooted, but you are not. Just be careful. If you are using the same arch (say i686), you can chroot from any Linux distro that matches that arch....(I know you can&#39;t chroot into a 64bit environment from a 32bit environment though:-/).</p><p>Edit 2:<br />How grub uses the different drives is in the /boot/grub/device.map file<br />Example:
</p><div class="source-code snippet"><div class="inner"><pre><span class="k2">(</span>hd0<span class="k2">)</span>     <span class="k3">/</span>dev<span class="k3">/</span>sda
<span class="k2">(</span>hd1<span class="k2">)</span>     <span class="k3">/</span>dev<span class="k3">/</span>sdb
</pre></div></div><p>
Then when you reference a drive in grub (like the /boot/grub/grub.conf file):
</p><div class="source-code snippet"><div class="inner"><pre>root <span class="k2">(</span>hd1,<span class="n">0</span><span class="k2">)</span>      <span class="c">//really /dev/sdb1</span>
kernel <span class="k3">/</span>vmlinuz-2.6.22-gentoo-r2 root<span class="k3">=</span><span class="k3">/</span>dev<span class="k3">/</span>sdb3 <span class="c">//set root= to your actual / directory</span>
</pre></div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Mon, 03 Dec 2007 21:53:14 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>
Also, when you chroot, be careful that everything is correct. You can think you are chrooted, but you are not. Just be careful. If you are using the same arch (say i686), you can chroot from any Linux distro that matches that arch....(I know you can&#39;t chroot into a 64bit environment from a 32bit environment though:-/).
</p></div></div><p>
Yes, one thing that I realized ~10-30 minutes after <tt>chroot</tt>&#39;ing into my new environment was that it only affected (effected? I should really clear those up... The xkcd comic made it clear how poorly I understood the differences...) the current terminal. It made sense, but didn&#39;t occur to me originally. Since I was switching between all 6 text-terminals it became a minor issue, though I mostly used the other terminals to browse the Web as a regular user.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Mon, 03 Dec 2007 22:05:41 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I have updated my last post about grub...please re-read.::)</p><p>Edit:
</p><div class="quote_container"><div class="title">I said:</div><div class="quote"><p>

I know you can&#39;t chroot into a 64bit environment from a 32bit environment though.:-/
</p></div></div><p>
Just one more reason to run a 64-bit environment!;D They better be 64-bit to chroot me!8-)<br />I remember when I first started with Gentoo and chrooted (well thought I was), I untarred the portage tarball on the livecd base system...didn&#39;t hurt anything, just a reboot...but boy, I felt stupid!;D</p><p>Gentoo will make you learn a lot of things about Linux...it is not the easiest distro by far, but that is why I like it so much.8-)</p><p>Edit 2:<br />What file system did you decide to take? I know that the xfs file system has some really powerful backup tools...saves the entire partition for you...and it doesn&#39;t bog down the system. You can&#39;t even tell when it is running.::)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Mon, 03 Dec 2007 22:06:44 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>oh, if you&#39;&#39;re not well versed in kernel configuring, you can just borrow the config from the livecd, it should be in /boot/config*, which you copy to /usr/src/linux/.config  then run &quot;make oldconfig&quot;, and continue on. After compiling the kernel you may want to create the initrd image, especially if your root part is on lvm or md raid (unless you made sure those drivers were built into the kernel instead of being modules as the livecd config sets up).
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Mon, 03 Dec 2007 22:52:46 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>You don&#39;t need an initrd...not normally anyway. The only time I have seen the need is when doing EVMS.:)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Mon, 03 Dec 2007 23:06:32 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>
Just one more reason to run a 64-bit environment!;D They better be 64-bit to chroot me!8-)
</p></div></div><p>
According  to my interpretation of <a href="http://en.wikipedia.org/wiki/Pentium_D">the Wikipedia</a> article, my processor (Pentium D 940, IIRC) should be 64-bit (or at least supports the x86-64 instruction set? <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />)... I thought it was 32-bit because the Windows version installed was 32-bit... Cool. <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>
I remember when I first started with Gentoo and chrooted (well thought I was), I untarred the portage tarball on the livecd base system...didn&#39;t hurt anything, just a reboot...but boy, I felt stupid!;D
</p></div></div><p>
The Gentoo Handbook has us untar both the stage3 archive and portage snapshot before <tt>chroot</tt>&#39;ing, making sure to untar them in <tt>/mnt/gentoo</tt> and <tt>/mnt/gentoo/usr</tt>, respectively. Also when we do <tt>chroot</tt> into the new environment we update the prompt with a <tt>(chroot)</tt> prefix.</p><p><tt>(chroot) livecd /#</tt></p><p>I guess that&#39;s why. <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /></p><p>BTW, when you&#39;re running off of the Gentoo Installation CD where does it store files that are written to the filesystem...? <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> I got the impression that &quot;<tt>tmpfs</tt>&quot; had something do with it, but wasn&#39;t sure... Are they all just kept in memory or does it find a piece of unallocated space somewhere and write to there? <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>
What file system did you decide to take? I know that the xfs file system has some really powerful backup tools...saves the entire partition for you...and it doesn&#39;t bog down the system. You can&#39;t even tell when it is running.::)
</p></div></div><p>
I went with ext3 because it seems like a pretty common choice and it&#39;s what the Gentoo Handbook did. IIRC, they recommended not to use XFS unless you had a SCSI drive for whatever reason. Since I&#39;m using a SATA HDD I figured that I should just stick to ext3. <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p><div class="quote_container"><div class="title">Thomas Fjellstrom said:</div><div class="quote"><p>
oh, if you&#39;&#39;re not well versed in kernel configuring, you can just borrow the config from the livecd, it should be in /boot/config*, which you copy to /usr/src/linux/.config then run &quot;make oldconfig&quot;, and continue on. After compiling the kernel you may want to create the initrd image, especially if your root part is on lvm or md raid (unless you made sure those drivers were built into the kernel instead of being modules as the livecd config sets up).
</p></div></div><p>
That sounds like a viable option, though I would still prefer to understand the modules... <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> One of the installation docs I was reading suggested that as well, but not until after I had <tt>chroot</tt>&#39;d into the new environment. At the time, I didn&#39;t know it was possible to just <tt>exit</tt> back to the previous root (/) so I figured that the livecd[/&quot;tmpfs&quot;?]&#39;s /boot partition was lost until I rebooted. <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> Of course when it came time to actually <tt>reboot</tt> I was enlightened. <img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" />
</p><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>
You don&#39;t need an initrd...not normally anyway. The only time I have seen the need is when doing EVMS.:)
</p></div></div><p>
Apparently the <tt>genkernel</tt> script builds one... I don&#39;t have a clue what it is or why it&#39;s needed though.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Mon, 03 Dec 2007 23:57:47 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>If that is indeed the processor you have, then yes...you can run gentoo in 64-bit mode. It is a little more of a pain to get right, not something I recommend for you just starting Gentoo. If you want in the future, I will help you with that...it has to do with the way it deals with 32-bit and 64-bit libraries. Also, no 64-bit flash player yet...:(</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Apparently the genkernel script builds one... I don&#39;t have a clue what it is or why it&#39;s needed though.
</p></div></div><p>
Yes, but you do not NEED the initrd file. genkernel is just that...a generic kernel. You could have just copied the livecd kernel for that! It is a generic kernel...it has to support everything!;) You just:
</p><div class="source-code snippet"><div class="inner"><pre>cd <span class="k3">/</span>usr<span class="k3">/</span>src<span class="k3">/</span>linux
make menuconfig
make <span class="k3">&amp;</span><span class="k3">&amp;</span> make modules_install <span class="k3">&amp;</span><span class="k3">&amp;</span> make install
modules_update
mc <span class="k3">-</span>e <span class="k3">/</span>boot<span class="k3">/</span>grub<span class="k3">/</span>grub.conf <span class="c">// or use whatever editor you have (vi?)</span>
</pre></div></div><p>

A sample of the packages you may find useful (When we get you up and running.:P)
</p><div class="source-code"><div class="toolbar"></div><div class="inner"><table width="100%"><tbody><tr><td class="number">1</td><td>app-admin<span class="k3">/</span>eselect</td></tr><tr><td class="number">2</td><td>app-admin<span class="k3">/</span>logrotate</td></tr><tr><td class="number">3</td><td>app-admin<span class="k3">/</span>sudo</td></tr><tr><td class="number">4</td><td>app-admin<span class="k3">/</span>syslog-ng</td></tr><tr><td class="number">5</td><td>app-arch<span class="k3">/</span>karchiver</td></tr><tr><td class="number">6</td><td>app-arch<span class="k3">/</span>mscompress</td></tr><tr><td class="number">7</td><td>app-arch<span class="k3">/</span>rar</td></tr><tr><td class="number">8</td><td>app-arch<span class="k3">/</span>rpm</td></tr><tr><td class="number">9</td><td>app-arch<span class="k3">/</span>unace</td></tr><tr><td class="number">10</td><td>app-arch<span class="k3">/</span>unrar</td></tr><tr><td class="number">11</td><td>app-cdr<span class="k3">/</span>k3b</td></tr><tr><td class="number">12</td><td>app-dicts<span class="k3">/</span>myspell-en</td></tr><tr><td class="number">13</td><td>app-emulation<span class="k3">/</span>wine</td></tr><tr><td class="number">14</td><td>app-misc<span class="k3">/</span>colordiff</td></tr><tr><td class="number">15</td><td>app-misc<span class="k3">/</span>hal-info</td></tr><tr><td class="number">16</td><td>app-misc<span class="k3">/</span>mc</td></tr><tr><td class="number">17</td><td>app-office<span class="k3">/</span>openoffice</td></tr><tr><td class="number">18</td><td>app-portage<span class="k3">/</span>conf-update</td></tr><tr><td class="number">19</td><td>app-portage<span class="k3">/</span>elogv</td></tr><tr><td class="number">20</td><td>app-portage<span class="k3">/</span>esearch</td></tr><tr><td class="number">21</td><td>app-portage<span class="k3">/</span>euses</td></tr><tr><td class="number">22</td><td>app-portage<span class="k3">/</span>gentoolkit</td></tr><tr><td class="number">23</td><td>app-portage<span class="k3">/</span>profuse</td></tr><tr><td class="number">24</td><td>app-text<span class="k3">/</span>iso-codes</td></tr><tr><td class="number">25</td><td>app-text<span class="k3">/</span>ispell</td></tr><tr><td class="number">26</td><td>dev-db<span class="k3">/</span>mysql</td></tr><tr><td class="number">27</td><td>dev-games<span class="k3">/</span>cegui</td></tr><tr><td class="number">28</td><td>dev-games<span class="k3">/</span>clanlib</td></tr><tr><td class="number">29</td><td>dev-java<span class="k3">/</span>java-config</td></tr><tr><td class="number">30</td><td>dev-lang<span class="k3">/</span>php</td></tr><tr><td class="number">31</td><td>dev-libs<span class="k3">/</span>libusb</td></tr><tr><td class="number">32</td><td>dev-util<span class="k3">/</span>kdevelop</td></tr><tr><td class="number">33</td><td>games-util<span class="k3">/</span>joystick</td></tr><tr><td class="number">34</td><td>kde-base<span class="k3">/</span>kde-meta</td></tr><tr><td class="number">35</td><td>kde-base<span class="k3">/</span>kdejava</td></tr><tr><td class="number">36</td><td>media-gfx<span class="k3">/</span>gimp</td></tr><tr><td class="number">37</td><td>media-libs<span class="k3">/</span>allegro</td></tr><tr><td class="number">38</td><td>media-libs<span class="k3">/</span>allegrogl</td></tr><tr><td class="number">39</td><td>media-sound<span class="k3">/</span>alsa-utils</td></tr><tr><td class="number">40</td><td>media-sound<span class="k3">/</span>amarok</td></tr><tr><td class="number">41</td><td>media-video<span class="k3">/</span>kaffeine</td></tr><tr><td class="number">42</td><td>media-video<span class="k3">/</span>kmplayer</td></tr><tr><td class="number">43</td><td>media-video<span class="k3">/</span>mplayer</td></tr><tr><td class="number">44</td><td>media-video<span class="k3">/</span>nvidia-settings</td></tr><tr><td class="number">45</td><td>net-misc<span class="k3">/</span>dhcp</td></tr><tr><td class="number">46</td><td>net-misc<span class="k3">/</span>dhcpcd</td></tr><tr><td class="number">47</td><td>sys-apps<span class="k3">/</span>dog</td></tr><tr><td class="number">48</td><td>sys-apps<span class="k3">/</span>eject</td></tr><tr><td class="number">49</td><td>sys-apps<span class="k3">/</span>pciutils</td></tr><tr><td class="number">50</td><td>sys-apps<span class="k3">/</span>slocate</td></tr><tr><td class="number">51</td><td>sys-boot<span class="k3">/</span>grub</td></tr><tr><td class="number">52</td><td>sys-fs<span class="k3">/</span>ntfs3g</td></tr><tr><td class="number">53</td><td>sys-fs<span class="k3">/</span>progsreiserfs</td></tr><tr><td class="number">54</td><td>sys-fs<span class="k3">/</span>reiserfsprogs</td></tr><tr><td class="number">55</td><td>sys-fs<span class="k3">/</span>xfsprogs</td></tr><tr><td class="number">56</td><td>sys-kernel<span class="k3">/</span>gentoo-sources</td></tr><tr><td class="number">57</td><td>sys-process<span class="k3">/</span>vixie-cron</td></tr><tr><td class="number">58</td><td>www-client<span class="k3">/</span>links</td></tr><tr><td class="number">59</td><td>www-client<span class="k3">/</span>mozilla-firefox</td></tr><tr><td class="number">60</td><td>www-servers<span class="k3">/</span>apache</td></tr><tr><td class="number">61</td><td>x11-apps<span class="k3">/</span>mesa-progs</td></tr><tr><td class="number">62</td><td>x11-base<span class="k3">/</span>xorg-x11</td></tr><tr><td class="number">63</td><td>x11-drivers<span class="k3">/</span>nvidia-drivers</td></tr><tr><td class="number">64</td><td>x11-libs<span class="k3">/</span>qt</td></tr></tbody></table></div></div><p>

I would start with mc (midnight commander: awesome), gentoolkit, pciutils,  eselect, and definately euses (helps with finding out what the use flags are used for).</p><p>An example of euses:
</p><div class="source-code snippet"><div class="inner"><pre>euses doc
doc <span class="k3">-</span> Adds extra documentation <span class="k2">(</span>API, Javadoc, etc<span class="k2">)</span>
dev-java<span class="k3">/</span>gjdoc:xmldoclet <span class="k3">-</span> Also build support <span class="k1">for</span> the xml doclet that generates output in xml instead of the traditional html javadoc.
sys-apps<span class="k3">/</span>portage:epydoc <span class="k3">-</span> Generate api documentation with epydoc.
www-apps<span class="k3">/</span>knowledgetree:opendoc <span class="k3">-</span> Allow to search in opendoc documents
</pre></div></div><p>
<img src="http://www.allegro.cc/forums/smileys/cool.gif" alt="8-)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Tue, 04 Dec 2007 00:15:37 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
BTW, when you&#39;re running off of the Gentoo Installation CD where does it store files that are written to the filesystem...? <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> I got the impression that &quot;tmpfs&quot; had something do with it, but wasn&#39;t sure... Are they all just kept in memory or does it find a piece of unallocated space somewhere and write to there? <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div></div><p>tmpfs is a RAM filesystem, so they aren&#39;t saved to your disk.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
That sounds like a viable option, though I would still prefer to understand the modules... <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div></div><p>And I think that&#39;s a good choice. If I were you, I would strip your kernel to the bare minimum needed to get to a login prompt, and everything should be compiled into the kernel. Then, once you are on your system, you can change the kernel modules and activate them without even restarting.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Yes, but you do not NEED the initrd file. genkernel is just that...a generic kernel.
</p></div></div><p>Not actually important, but genkernel is &quot;generate kernel&quot; <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /></p><p>Anyways, I don&#39;t think we can really work on the problem any more until we know exactly what it is, so let us know what the boot messages are, what your /etc/grub/grub.conf is, and what you /etc/fstab is <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Tue, 04 Dec 2007 00:56:11 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Yeah...and stuff. <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" /> Also, if you can post the output of lspci...we could probably help you pick the correct modules to build into your kernel, so you can actually boot into it.::)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Tue, 04 Dec 2007 01:11:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Another package you may want is screen. I use it all the time when updating my system.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (MiquelFire)</author>
		<pubDate>Tue, 04 Dec 2007 04:18:00 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
That makes sense.  Thanks. So perhaps the problem isn&#39;t the kernel, but the lack of external modules (because only one existed there was only one I could add to /etc/modules.autoload.d/&lt;kernel_version&gt; - which was scsi related, not that it necessarily matters ).
</p></div></div><p>

No, the problem is either the bootloader, or the kernel. Wether or not you have modules or if it&#39;s all compiled into the kernel, etc doesn&#39;t matter. The lack of modules won&#39;t affect your system&#39;s ability to boot, but missing modules that aren&#39;t compiled into the kernel can cause various hardware not to work.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Tue, 04 Dec 2007 04:26:25 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
The lack of modules won&#39;t affect your system&#39;s ability to boot, but missing modules that aren&#39;t compiled into the kernel can cause various hardware not to work.
</p></div></div><p>Not true at all. If ext3 is a module, and/or lvm or your ide driver is a module, and they aren&#39;t loaded, it&#39;ll never get past the boot loader. Immediate fail.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Tue, 04 Dec 2007 04:33:52 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I meant to say external modules. My point was the lack of stuff in his modules.autoload.d or actual external modules themselves do not affect the boot process at all (with the assumption you have the correct internal modules, but that has nothing to do with his theory that lack of external modules were causing the problem).
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Tue, 04 Dec 2007 04:42:54 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
(with the assumption you have the correct internal modules, but that has nothing to do with his theory that lack of external modules were causing the problem
</p></div></div><p>There is no such thing as &quot;internal modules&quot;. You have modules, and you have &quot;not modules&quot;. <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /> You assumption is flawed.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Tue, 04 Dec 2007 05:12:23 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>It appears instead to be having problems with the /boot partition, though it is somehow reading <tt>/boot/grub/grub.conf</tt>. While I was fetching the following information it occurred to me that <tt>lvm2</tt> isn&#39;t even installed on my system... <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> I&#39;m sure that will help eventually. <img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" /></p><p><b><tt>/boot</tt></b>
</p><div class="source-code"><div class="toolbar"></div><div class="inner"><table width="100%"><tbody><tr><td class="number">1</td><td><span class="k2">(</span>chroot<span class="k2">)</span> livecd <span class="k3">/</span> # ls <span class="k3">-</span>Rla <span class="k3">/</span>boot</td></tr><tr><td class="number">2</td><td><span class="k3">/</span>boot:</td></tr><tr><td class="number">3</td><td>total <span class="n">2458</span></td></tr><tr><td class="number">4</td><td>drwxr-xr-x  <span class="n">4</span> root root    <span class="n">1024</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> .</td></tr><tr><td class="number">5</td><td>drwxr-xr-x <span class="n">18</span> root root    <span class="n">4096</span> Dec  <span class="n">3</span> <span class="n">14</span><span class="k2">:</span><span class="n">40</span> ..</td></tr><tr><td class="number">6</td><td><span class="k3">-</span>rw-r--r--  <span class="n">1</span> root root       <span class="n">0</span> Apr <span class="n">19</span>  <span class="n">2007</span> .keep</td></tr><tr><td class="number">7</td><td>lrwxrwxrwx  <span class="n">1</span> root root       <span class="n">1</span> Dec  <span class="n">2</span> <span class="n">13</span><span class="k2">:</span><span class="n">49</span> boot <span class="k3">-</span><span class="k3">&gt;</span> .</td></tr><tr><td class="number">8</td><td>drwxr-xr-x  <span class="n">2</span> root root    <span class="n">1024</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">12</span> grub</td></tr><tr><td class="number">9</td><td><span class="k3">-</span>rw-r--r--  <span class="n">1</span> root root <span class="n">2486320</span> Dec  <span class="n">2</span> <span class="n">22</span><span class="k2">:</span><span class="n">15</span> kernel-2.6.22-gentoo-r9</td></tr><tr><td class="number">10</td><td>drwx------  <span class="n">2</span> root root   <span class="n">12288</span> Dec  <span class="n">2</span> <span class="n">13</span><span class="k2">:</span><span class="n">06</span> lost<span class="k3">+</span>found</td></tr><tr><td class="number">11</td><td>&#160;</td></tr><tr><td class="number">12</td><td><span class="k3">/</span>boot<span class="k3">/</span>grub:</td></tr><tr><td class="number">13</td><td>total <span class="n">327</span></td></tr><tr><td class="number">14</td><td>drwxr-xr-x <span class="n">2</span> root root   <span class="n">1024</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">12</span> .</td></tr><tr><td class="number">15</td><td>drwxr-xr-x <span class="n">4</span> root root   <span class="n">1024</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> ..</td></tr><tr><td class="number">16</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root   <span class="n">7584</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> e2fs_stage1_5</td></tr><tr><td class="number">17</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root   <span class="n">7424</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> fat_stage1_5</td></tr><tr><td class="number">18</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root   <span class="n">6720</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> ffs_stage1_5</td></tr><tr><td class="number">19</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root    <span class="n">828</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">25</span> grub.conf</td></tr><tr><td class="number">20</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root   <span class="n">1842</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> grub.conf.sample</td></tr><tr><td class="number">21</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root   <span class="n">6720</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> iso9660_stage1_5</td></tr><tr><td class="number">22</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root   <span class="n">8192</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> jfs_stage1_5</td></tr><tr><td class="number">23</td><td>lrwxrwxrwx <span class="n">1</span> root root      <span class="n">9</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> menu.lst <span class="k3">-</span><span class="k3">&gt;</span> grub.conf</td></tr><tr><td class="number">24</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root   <span class="n">6848</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> minix_stage1_5</td></tr><tr><td class="number">25</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root   <span class="n">9280</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> reiserfs_stage1_5</td></tr><tr><td class="number">26</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root  <span class="n">33856</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> splash.xpm.gz</td></tr><tr><td class="number">27</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root    <span class="n">512</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> stage1</td></tr><tr><td class="number">28</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root <span class="n">104924</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> stage2</td></tr><tr><td class="number">29</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root <span class="n">104924</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> stage2_eltorito</td></tr><tr><td class="number">30</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root   <span class="n">7040</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> ufs2_stage1_5</td></tr><tr><td class="number">31</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root   <span class="n">6272</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> vstafs_stage1_5</td></tr><tr><td class="number">32</td><td><span class="k3">-</span>rw-r--r-- <span class="n">1</span> root root   <span class="n">8936</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> xfs_stage1_5</td></tr><tr><td class="number">33</td><td>&#160;</td></tr><tr><td class="number">34</td><td><span class="k3">/</span>boot<span class="k3">/</span>lost<span class="k3">+</span>found:</td></tr><tr><td class="number">35</td><td>total <span class="n">13</span></td></tr><tr><td class="number">36</td><td>drwx------ <span class="n">2</span> root root <span class="n">12288</span> Dec  <span class="n">2</span> <span class="n">13</span><span class="k2">:</span><span class="n">06</span> .</td></tr><tr><td class="number">37</td><td>drwxr-xr-x <span class="n">4</span> root root  <span class="n">1024</span> Dec  <span class="n">2</span> <span class="n">23</span><span class="k2">:</span><span class="n">10</span> ..</td></tr></tbody></table></div></div><p>

<b><tt>/boot/grub/grub.conf</tt></b>
</p><div class="source-code"><div class="toolbar"></div><div class="inner"><table width="100%"><tbody><tr><td class="number">1</td><td><span class="p"># Which listing to boot as default. 0 is the first, 1 the second, etc.</span></td></tr><tr><td class="number">2</td><td><span class="k1">default</span> <span class="n">0</span></td></tr><tr><td class="number">3</td><td><span class="p"># How many seconds to wait before the default listing is booted.</span></td></tr><tr><td class="number">4</td><td>timeout <span class="n">10</span></td></tr><tr><td class="number">5</td><td><span class="p"># Nice, fat splash-image to spice things up. :)</span></td></tr><tr><td class="number">6</td><td><span class="p"># Comment out if you don't have a graphics card installed.</span></td></tr><tr><td class="number">7</td><td><span class="p">#splashimage=(hd1,0)/grub/splash.xpm.gz</span></td></tr><tr><td class="number">8</td><td>&#160;</td></tr><tr><td class="number">9</td><td><span class="p"># ------- Listings: -------</span></td></tr><tr><td class="number">10</td><td>&#160;</td></tr><tr><td class="number">11</td><td>&#160;</td></tr><tr><td class="number">12</td><td>&#160;</td></tr><tr><td class="number">13</td><td>title<span class="k3">=</span>Gentoo Linux <span class="n">2</span>.<span class="n">6</span>.<span class="n">22</span><span class="k3">-</span>r9</td></tr><tr><td class="number">14</td><td><span class="p"># Partition where the kernel image (or operating system) is located.</span></td></tr><tr><td class="number">15</td><td>root <span class="k2">(</span>hd1,<span class="n">0</span><span class="k2">)</span></td></tr><tr><td class="number">16</td><td>kernel <span class="k3">/</span>kernel-2.6.22-gentoo-r9 root<span class="k3">=</span><span class="k3">/</span>dev<span class="k3">/</span>sdb3 dolvm2</td></tr><tr><td class="number">17</td><td>&#160;</td></tr><tr><td class="number">18</td><td>&#160;</td></tr><tr><td class="number">19</td><td>&#160;</td></tr><tr><td class="number">20</td><td>title<span class="k3">=</span>Gentoo Linux <span class="n">2</span>.<span class="n">6</span>.<span class="n">22</span><span class="k3">-</span>r9 <span class="k2">(</span>rescue<span class="k2">)</span></td></tr><tr><td class="number">21</td><td><span class="p"># Partition where the kernel image (or operating system) is located.</span></td></tr><tr><td class="number">22</td><td>root <span class="k2">(</span>hd1,<span class="n">0</span><span class="k2">)</span></td></tr><tr><td class="number">23</td><td>kernel <span class="k3">/</span>kernel-2.6.22-gentoo-r9 root<span class="k3">=</span><span class="k3">/</span>dev<span class="k3">/</span>sdb3 init<span class="k3">=</span><span class="k3">/</span>bin<span class="k3">/</span>bb dolvm2</td></tr><tr><td class="number">24</td><td>&#160;</td></tr><tr><td class="number">25</td><td>&#160;</td></tr><tr><td class="number">26</td><td>&#160;</td></tr><tr><td class="number">27</td><td><span class="p"># The next four lines are only if you dualboot with a Windows system.</span></td></tr><tr><td class="number">28</td><td>title<span class="k3">=</span>Windows XP</td></tr><tr><td class="number">29</td><td>rootnoverify <span class="k2">(</span>hd0,<span class="n">0</span><span class="k2">)</span></td></tr><tr><td class="number">30</td><td>makeactive</td></tr><tr><td class="number">31</td><td>chainloader <span class="k3">+</span><span class="n">1</span></td></tr></tbody></table></div></div><p>
<b><tt>/etc/fstab</tt></b>
</p><div class="source-code"><div class="toolbar"></div><div class="inner"><table width="100%"><tbody><tr><td class="number">1</td><td><span class="p"># /etc/fstab: static file system information.</span></td></tr><tr><td class="number">2</td><td><span class="p">#</span></td></tr><tr><td class="number">3</td><td><span class="p"># noatime turns off atimes for increased performance (atimes normally aren't </span></td></tr><tr><td class="number">4</td><td><span class="p"># needed; notail increases performance of ReiserFS (at the expense of storage </span></td></tr><tr><td class="number">5</td><td><span class="p"># efficiency).  It's safe to drop the noatime options if you want and to </span></td></tr><tr><td class="number">6</td><td><span class="p"># switch between notail / tail freely.</span></td></tr><tr><td class="number">7</td><td><span class="p">#</span></td></tr><tr><td class="number">8</td><td><span class="p"># The root filesystem should have a pass number of either 0 or 1.</span></td></tr><tr><td class="number">9</td><td><span class="p"># All other filesystems should have a pass number of 0 or greater than 1.</span></td></tr><tr><td class="number">10</td><td><span class="p">#</span></td></tr><tr><td class="number">11</td><td><span class="p"># See the manpage fstab(5) for more information.</span></td></tr><tr><td class="number">12</td><td><span class="p">#</span></td></tr><tr><td class="number">13</td><td>&#160;</td></tr><tr><td class="number">14</td><td><span class="p"># &lt;fs&gt;      &lt;mountpoint&gt;  &lt;type&gt;    &lt;opts&gt;    &lt;dump/pass&gt;</span></td></tr><tr><td class="number">15</td><td>&#160;</td></tr><tr><td class="number">16</td><td><span class="p"># NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.</span></td></tr><tr><td class="number">17</td><td><span class="k3">/</span>dev<span class="k3">/</span>sdb1    <span class="k3">/</span>boot    ext2    noauto,noatime  <span class="n">1</span> <span class="n">2</span></td></tr><tr><td class="number">18</td><td><span class="k3">/</span>dev<span class="k3">/</span>sdb3    <span class="k3">/</span>    ext3    noatime    <span class="n">0</span> <span class="n">1</span></td></tr><tr><td class="number">19</td><td><span class="k3">/</span>dev<span class="k3">/</span>sdb2    none    swap    sw    <span class="n">0</span> <span class="n">0</span></td></tr><tr><td class="number">20</td><td><span class="k3">/</span>dev<span class="k3">/</span>VOLGROUP001<span class="k3">/</span>home  <span class="k3">/</span>home    ext3    noatime    <span class="n">0</span> <span class="n">1</span></td></tr><tr><td class="number">21</td><td><span class="k3">/</span>dev<span class="k3">/</span>VOLGROUP001<span class="k3">/</span>opt  <span class="k3">/</span>opt    ext3    noatime    <span class="n">0</span> <span class="n">1</span></td></tr><tr><td class="number">22</td><td><span class="k3">/</span>dev<span class="k3">/</span>VOLGROUP001<span class="k3">/</span>usr  <span class="k3">/</span>usr    ext3    noatime    <span class="n">0</span> <span class="n">1</span></td></tr><tr><td class="number">23</td><td><span class="k3">/</span>dev<span class="k3">/</span>VOLGROUP001<span class="k3">/</span>var  <span class="k3">/</span>var    ext3    noatime    <span class="n">0</span> <span class="n">1</span></td></tr><tr><td class="number">24</td><td><span class="k3">/</span>dev<span class="k3">/</span>cdrom    <span class="k3">/</span>mnt<span class="k3">/</span>cdrom  audo    noauto,ro  <span class="n">0</span> <span class="n">0</span></td></tr><tr><td class="number">25</td><td><span class="p">#/dev/fd0    /mnt/floppy  auto    noauto    0 0</span></td></tr><tr><td class="number">26</td><td>&#160;</td></tr><tr><td class="number">27</td><td><span class="p"># glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for </span></td></tr><tr><td class="number">28</td><td><span class="p"># POSIX shared memory (shm_open, shm_unlink).</span></td></tr><tr><td class="number">29</td><td><span class="p"># (tmpfs is a dynamically expandable/shrinkable ramdisk, and will</span></td></tr><tr><td class="number">30</td><td><span class="p">#  use almost no memory if not populated with files)</span></td></tr><tr><td class="number">31</td><td>shm      <span class="k3">/</span>dev<span class="k3">/</span>shm  tmpfs    nodev,nosuid,noexec  <span class="n">0</span> <span class="n">0</span></td></tr></tbody></table></div></div><p>
<sub>It would appear the pass numbers for /home, /opt, /usr, and /var should be something other than 1... :)</sub></p><p><b>When I try to boot the first listing (<tt>/dev/sdb</tt>)</b>
</p><div class="source-code snippet"><div class="inner"><pre>Booting <span class="s">'Gentoo Linux 2.6.22-r9'</span>

root <span class="k2">(</span>hd1,<span class="n">0</span><span class="k2">)</span>
 Filesystem type unknown, partition type <span class="n">0x7</span>
kernel <span class="k3">/</span>kernel-2.6.22-gentoo-r9 root<span class="k3">=</span><span class="k3">/</span>dev<span class="k3">/</span>sdb3 dolvm2

Error <span class="n">17</span><span class="k2">:</span> Cannot mount selected partition

Press any <a href="http://www.allegro.cc/manual/key" target="_blank"><span class="a">key</span></a> to continue...
</pre></div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Tue, 04 Dec 2007 07:24:28 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I don&#39;t know anything about LVM, so I can&#39;t really help. I always just install straight up. Sounds like you need some LVM module or something, or maybe an initrd.</p><p>The Gentoo Wiki points <a href="http://www.gentoo.org/doc/en/lvm2.xml">here</a> for info on installing with LVM. That should help.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Tue, 04 Dec 2007 08:36:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">BAF said:</div><div class="quote"><p>
The Gentoo Wiki points <a href="http://www.gentoo.org/doc/en/lvm2.xml">here</a> for info on installing with LVM. That should help.
</p></div></div><p>
Thanks for the link. I had combined <a href="http://www.gentoo.org/doc/en/gentoo-x86+raid+lvm2-quickinstall.xml">this</a> with the Gentoo Handbook to get my lvm2 partition created and to load it, etc. It seemed to be a little bit more disconnected from the Gentoo Handbook requiring me to fill in the gaps a little bit more. The one you link to seems to compliment the Gentoo Handbook so it will surely help.</p><p>Unfortunately, I&#39;m still not sure which modules I should build into my kernel and which ones I should build into external modules. Also, grub doesn&#39;t seem to be getting as far as the lvm2 partition so I don&#39;t think that&#39;s the issue. If anything, those partitions would fail, but my base system would have booted successfully.</p><p>So I don&#39;t think lvm2 is my immediate problem. <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Tue, 04 Dec 2007 08:52:31 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>back in the day, when i didnt know better and used gentoo, i&#39;d geet annoyed of compiling the kernel...So, I&#39;d copy the kernel from the livecd and the associate modules into my current install, and i&#39;d be able to boot off of it with, saved a lot of time and effort and comes with all the modules that you would need.</p><p>Seriously dude, why don&#39;t you just go debian or ubuntu?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (le_y_mistar)</author>
		<pubDate>Tue, 04 Dec 2007 09:25:09 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>The only things you have to build into the kernel are your file systems and any drivers required to get access to your /boot partition. The rest can be external and loaded as needed for other hardware.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Tue, 04 Dec 2007 10:10:55 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
</p><pre>Booting &#39;Gentoo Linux 2.6.22-r9&#39;

root (hd1,0)
 Filesystem type unknown, partition type 0x7
kernel /kernel-2.6.22-gentoo-r9 root=/dev/sdb3 dolvm2

Error 17: Cannot mount selected partition

Press any key to continue...</pre><p>
</p></div></div><p>Partition type 0x7 is NTFS. Go back into cfdisk and set the type of the partition on your swap and root drives. If that is set correctly, then you need to verify your grub identifiers. You can do that from the grub console from within your chroot.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Tue, 04 Dec 2007 21:06:07 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">CGamesPlay said:</div><div class="quote"><p>
Partition type 0x7 is NTFS. Go back into cfdisk and set the type of the partition on your swap and root drives. If that is set correctly, then you need to verify your grub identifiers. You can do that from the grub console from within your chroot.
</p></div></div><p>
I gather that the second suggestion was to verify that <tt>(hd1,0)</tt> is pointing to my slave (Linux) drive and not my master (Windows) drive? <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Tue, 04 Dec 2007 21:45:11 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Yes, make sure that it is indeed pointing to the correct drive.8-)<br />You can also do this inside the grub menu. press e to edit that line. You will have to fix this in the grub.conf file, but it will at least allow you to boot.:P
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Tue, 04 Dec 2007 22:20:43 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I gather that the second suggestion was to verify that (hd1,0) is pointing to my slave (Linux) drive and not my master (Windows) drive? <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div></div><p>Yes.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Tue, 04 Dec 2007 22:29:15 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">I said my /etc/fstab said:</div><div class="quote"><p>
<span class="source-code"><span class="k3">/</span>dev<span class="k3">/</span>cdrom		<span class="k3">/</span>mnt<span class="k3">/</span>cdrom	audo		noauto,ro	<span class="n">0</span> <span class="n">0</span></span>
</p></div></div><p>
<tt>audo</tt>!? That can&#39;t be right! <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /> I wonder if I did that or if the template came like that...
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Tue, 04 Dec 2007 22:41:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>This is the relevant part of my grub.conf
</p><div class="source-code snippet"><div class="inner"><pre>title Gentoo kernel-2.6.22-r9
root <span class="k2">(</span>hd0,<span class="n">0</span><span class="k2">)</span>
kernel <span class="k3">/</span>boot<span class="k3">/</span>kernel-2.6.22-r9 root<span class="k3">=</span><span class="k3">/</span>dev<span class="k3">/</span>sdb3 vga<span class="k3">=</span><span class="n">0x31B</span> video<span class="k3">=</span>vesafb:mtrr:3,ywrap,<span class="n">1280x1024</span><span class="k3">-</span><span class="n">32</span>
</pre></div></div><p>

I have 2 SATA disks, the one on the first channel has Windows, the one on the second has Gentoo. Go figure why I had to put (hd<b>0</b>,0) in it, but my box kept non-booting until I changed that from (hd1,0) to (hd0,0) <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" /></p><p>[edit]</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
That can&#39;t be right! <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /> I wonder if I did that or if the template came like that...
</p></div></div><p>
Either way that&#39;s not preventing your booting process, it&#39;s <i>auto</i> BTW <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Marco Radaelli)</author>
		<pubDate>Wed, 05 Dec 2007 00:21:54 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Marco Radaelli said:</div><div class="quote"><p>
I have 2 SATA disks, the one on the first channel has Windows, the one on the second has Gentoo. Go figure why I had to put (hd0,0) in it, but my bow kept non-booting until I changed that from (hd1,0) to (hd0,0) <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" />
</p></div></div><p>
Interesting... <img src="http://www.allegro.cc/forums/smileys/huh.gif" alt="???" /> Thanks. I&#39;ll check it out when I get home. Does anybody have an explanation for why grub would interpret them that way?</p><p> <i>** EDIT **</i></p><div class="quote_container"><div class="title">I said:</div><div class="quote"><p>
[quote I said my /etc/fstab]<span class="source-code"><span class="k3">/</span>dev<span class="k3">/</span>cdrom		<span class="k3">/</span>mnt<span class="k3">/</span>cdrom	audo		noauto,ro	<span class="n">0</span> <span class="n">0</span></span>
</p></div></div><p>
<tt>audo</tt>!? That can&#39;t be right! <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /> I wonder if I did that or if the template came like that...<br />&lt;/quote&gt;<br />I know you probably thought it was my mistake, but here is /etc/fstab from the  current <tt>releases/x86/2007.0/stages/stage3-i686-2007.0.tar.bz2</tt> archive on the <i>Tera-byte Dot Com Inc (Canada/http)</i> Gentoo mirror.
</p><div class="source-code"><div class="toolbar"></div><div class="inner"><table width="100%"><tbody><tr><td class="number">1</td><td><span class="p"># /etc/fstab: static file system information.</span></td></tr><tr><td class="number">2</td><td><span class="p">#</span></td></tr><tr><td class="number">3</td><td><span class="p"># noatime turns off atimes for increased performance (atimes normally aren't </span></td></tr><tr><td class="number">4</td><td><span class="p"># needed; notail increases performance of ReiserFS (at the expense of storage </span></td></tr><tr><td class="number">5</td><td><span class="p"># efficiency).  It's safe to drop the noatime options if you want and to </span></td></tr><tr><td class="number">6</td><td><span class="p"># switch between notail / tail freely.</span></td></tr><tr><td class="number">7</td><td><span class="p">#</span></td></tr><tr><td class="number">8</td><td><span class="p"># The root filesystem should have a pass number of either 0 or 1.</span></td></tr><tr><td class="number">9</td><td><span class="p"># All other filesystems should have a pass number of 0 or greater than 1.</span></td></tr><tr><td class="number">10</td><td><span class="p">#</span></td></tr><tr><td class="number">11</td><td><span class="p"># See the manpage fstab(5) for more information.</span></td></tr><tr><td class="number">12</td><td><span class="p">#</span></td></tr><tr><td class="number">13</td><td>&#160;</td></tr><tr><td class="number">14</td><td><span class="p"># &lt;fs&gt;      &lt;mountpoint&gt;  &lt;type&gt;    &lt;opts&gt;    &lt;dump/pass&gt;</span></td></tr><tr><td class="number">15</td><td>&#160;</td></tr><tr><td class="number">16</td><td><span class="p"># NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.</span></td></tr><tr><td class="number">17</td><td><span class="k3">/</span>dev<span class="k3">/</span>BOOT    <span class="k3">/</span>boot    ext2    noauto,noatime  <span class="n">1</span> <span class="n">2</span></td></tr><tr><td class="number">18</td><td><span class="k3">/</span>dev<span class="k3">/</span>ROOT    <span class="k3">/</span>    ext3    noatime    <span class="n">0</span> <span class="n">1</span></td></tr><tr><td class="number">19</td><td><span class="k3">/</span>dev<span class="k3">/</span>SWAP    none    swap    sw    <span class="n">0</span> <span class="n">0</span></td></tr><tr><td class="number">20</td><td><span class="k3">/</span>dev<span class="k3">/</span>cdrom    <span class="k3">/</span>mnt<span class="k3">/</span>cdrom  audo    noauto,ro  <span class="n">0</span> <span class="n">0</span></td></tr><tr><td class="number">21</td><td><span class="p">#/dev/fd0    /mnt/floppy  auto    noauto    0 0</span></td></tr><tr><td class="number">22</td><td>&#160;</td></tr><tr><td class="number">23</td><td><span class="p"># glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for </span></td></tr><tr><td class="number">24</td><td><span class="p"># POSIX shared memory (shm_open, shm_unlink).</span></td></tr><tr><td class="number">25</td><td><span class="p"># (tmpfs is a dynamically expandable/shrinkable ramdisk, and will</span></td></tr><tr><td class="number">26</td><td><span class="p">#  use almost no memory if not populated with files)</span></td></tr><tr><td class="number">27</td><td>shm      <span class="k3">/</span>dev<span class="k3">/</span>shm  tmpfs    nodev,nosuid,noexec  <span class="n">0</span> <span class="n">0</span></td></tr></tbody></table></div></div><p>
I guess you could consider that a bug worth reporting... <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Wed, 05 Dec 2007 00:23:46 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>having fun compiling gentoo night after night eh;D
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (le_y_mistar)</author>
		<pubDate>Wed, 05 Dec 2007 05:22:44 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>There hasn&#39;t actually been a whole lot of compiling thus far... The little bit there has been was fast and pretty. <img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" /></p><p>I made the following changes to /boot/grub/grub.conf and reinstalled grub.
</p><div class="source-code"><div class="toolbar"></div><div class="inner"><table width="100%"><tbody><tr><td class="number">1</td><td><span class="p"># Which listing to boot as default. 0 is the first, 1 the second, etc.</span></td></tr><tr><td class="number">2</td><td><span class="k1">default</span> <span class="n">0</span></td></tr><tr><td class="number">3</td><td><span class="p"># How many seconds to wait before the default listing is booted.</span></td></tr><tr><td class="number">4</td><td>timeout <span class="n">10</span></td></tr><tr><td class="number">5</td><td><span class="p"># Nice, fat splash-image to spice things up. :)</span></td></tr><tr><td class="number">6</td><td><span class="p"># Comment out if you don't have a graphics card installed.</span></td></tr><tr><td class="number">7</td><td><span class="p">#splashimage=(hd0,0)/grub/splash.xpm.gz</span></td></tr><tr><td class="number">8</td><td>&#160;</td></tr><tr><td class="number">9</td><td><span class="p"># ------- Listings: -------</span></td></tr><tr><td class="number">10</td><td>&#160;</td></tr><tr><td class="number">11</td><td>&#160;</td></tr><tr><td class="number">12</td><td>&#160;</td></tr><tr><td class="number">13</td><td>title<span class="k3">=</span>Gentoo Linux <span class="n">2</span>.<span class="n">6</span>.<span class="n">22</span><span class="k3">-</span>r9</td></tr><tr><td class="number">14</td><td><span class="p"># Partition where the kernel image (or operating system) is located.</span></td></tr><tr><td class="number">15</td><td>root <span class="k2">(</span>hd0,<span class="n">0</span><span class="k2">)</span></td></tr><tr><td class="number">16</td><td>kernel <span class="k3">/</span>kernel-2.6.22-gentoo-r9 root<span class="k3">=</span><span class="k3">/</span>dev<span class="k3">/</span>sdb3 dolvm2</td></tr><tr><td class="number">17</td><td>&#160;</td></tr><tr><td class="number">18</td><td>&#160;</td></tr><tr><td class="number">19</td><td>&#160;</td></tr><tr><td class="number">20</td><td>title<span class="k3">=</span>Gentoo Linux <span class="n">2</span>.<span class="n">6</span>.<span class="n">22</span><span class="k3">-</span>r9 <span class="k2">(</span>rescue<span class="k2">)</span></td></tr><tr><td class="number">21</td><td><span class="p"># Partition where the kernel image (or operating system) is located.</span></td></tr><tr><td class="number">22</td><td>root <span class="k2">(</span>hd0,<span class="n">0</span><span class="k2">)</span></td></tr><tr><td class="number">23</td><td>kernel <span class="k3">/</span>kernel-2.6.22-gentoo-r9 root<span class="k3">=</span><span class="k3">/</span>dev<span class="k3">/</span>sdb3 init<span class="k3">=</span><span class="k3">/</span>bin<span class="k3">/</span>bb dolvm2</td></tr><tr><td class="number">24</td><td>&#160;</td></tr><tr><td class="number">25</td><td>&#160;</td></tr><tr><td class="number">26</td><td>&#160;</td></tr><tr><td class="number">27</td><td><span class="p"># The next four lines are only if you dualboot with a Windows system.</span></td></tr><tr><td class="number">28</td><td>title<span class="k3">=</span>Windows XP</td></tr><tr><td class="number">29</td><td>rootnoverify <span class="k2">(</span>hd1,<span class="n">0</span><span class="k2">)</span></td></tr><tr><td class="number">30</td><td>makeactive</td></tr><tr><td class="number">31</td><td>chainloader <span class="k3">+</span><span class="n">1</span></td></tr></tbody></table></div></div><p>
Note: Emphasis on <tt>(hd0,0)</tt>. I actually added both options for me to test each and the first partition on <tt>(hd0)</tt> began to successfully boot Linux. Note that I haven&#39;t actually attempted to boot my Windows system from this grub install, but I assume it is correct.</p><p>From the livecd <tt>(hd1)</tt> was correct so I stuck with those values when installing grub. Perhaps when booting my slave drive the BIOS switches them or something... <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /></p><p>Unfortunately, booting my kernel didn&#39;t get too far and eventually the kernel panicked. I&#39;m going to have to recompile the kernel. Hopefully I do it correctly this time... <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /></p><p>So how do I determine which modules to build into the kernel and which ones to build as external modules? Should I just go through the entire <tt>make menuconfig</tt> checking out the help section for each node and guessing? <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Wed, 05 Dec 2007 05:32:17 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>The easiest way to do it would probably be to go through every menu option and turn all compiled-in modules into external modules. Then, go through and find the options necessary for you to boot, and set those to be compiled-in.</p><p>What message did the kernel give you?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 05 Dec 2007 05:38:51 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>the panic may not be module related. First I&#39;d make sure the &quot;root=/dev/hdb3&quot; is correct. and try and post the message you get when the kernel panics.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Wed, 05 Dec 2007 06:38:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
There hasn&#39;t actually been a whole lot of compiling thus far...
</p></div></div><p>
Yeah, starting from a stage3 isn&#39;t as cool as from a stage1 <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /></p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
The little bit there has been was fast and pretty. <img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" />
</p></div></div><p>
That&#39;s because you still haven&#39;t got X, KDE, OpenOffice, ... <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" /></p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
So how do I determine which modules to build into the kernel and which ones to build as external modules? Should I just go through the entire make menuconfig checking out the help section for each node and guessing? <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div></div><p>
Altough that&#39;s a good read, I decided to go for the all-in and module-when-needed. So, i.e., my nvidia driver is compiled as a module, because X was complaining it couldn&#39;t load it.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Marco Radaelli)</author>
		<pubDate>Wed, 05 Dec 2007 06:52:12 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Altough that&#39;s a good read, I decided to go for the all-in and module-when-needed. So, i.e., my nvidia driver is compiled as a module, because X was complaining it couldn&#39;t load it.
</p></div></div><p>The reason I wouldn&#39;t consider doing this is because if a module has a problem it can&#39;t be unloaded, and because I can&#39;t change my kernel configuration without rebooting.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 05 Dec 2007 06:58:28 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">CGamesPlay said:</div><div class="quote"><p>
What message did the kernel give you?
</p></div></div><p>
</p><div class="source-code snippet"><div class="inner"><pre>VFS: Cannot <a href="http://www.delorie.com/djgpp/doc/libc/libc_600.html" target="_blank">open</a> root device <span class="s">"sdb3"</span> <span class="k1">or</span> unknown-block<span class="k2">(</span><span class="n">2</span>,<span class="n">0</span><span class="k2">)</span>
Please append a correct <span class="s">"root="</span> boot option<span class="k2">;</span> here are the available options:
<span class="n">0300</span>      <span class="n">130528</span>   hda driver:  ide-cdrom
<span class="n">0340</span>     <span class="n">4194302</span>   hdb driver:  ide-cdrom
Kernel panic <span class="k3">-</span> <span class="k1">not</span> syncing: VFS: Unable to mount root fs on unknown-block<span class="k2">(</span><span class="n">2</span>,<span class="n">0</span><span class="k2">)</span>
</pre></div></div><p>
<sub>Keep in mind that this was written down and then typed. :)</sub></p><p>I have two guesses based on this output: either the kernel doesn&#39;t have appropriate support for my SATA hard drives/disc controller (I should note that my PC might also have a RAID controller) or Linux believes the slave drive is actually the master too and I need to indicate <tt>/dev/sda3</tt>. <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> I&#39;d guess it&#39;s the kernel modules.
</p><div class="quote_container"><div class="title">Thomas Fjellstrom said:</div><div class="quote"><p>
the panic may not be module related. First I&#39;d make sure the &quot;root=/dev/hdb3&quot; is correct. and try and post the message you get when the kernel panics.
</p></div></div><p>
Good call. <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" />
</p><div class="quote_container"><div class="title">Marco Radaelli said:</div><div class="quote"><p>
Yeah, starting from a stage3 isn&#39;t as cool as from a stage1 <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div></div><p>
Now I&#39;m intrigued... The Gentoo Handbook made it seem like stage1 and stage2 was obsoleted. Unfortunately, stage1 and stage2 installations are apparently no longer unsupported... <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> Once I figure out the stage3 I&#39;ll probably attempt a stage2 and stage1. <img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" />
</p><div class="quote_container"><div class="title">Marco Radaelli said:</div><div class="quote"><p>
That&#39;s because you still haven&#39;t got X, KDE, OpenOffice, ... <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" />
</p></div></div><p>
Yeah, I expect a lot more compiling when I actually get a bootable system. I&#39;d be disappointed if there wasn&#39;t.
</p><div class="quote_container"><div class="title">CGamesPlay said:</div><div class="quote"><p>
The reason I wouldn&#39;t consider doing this is because if a module has a problem it can&#39;t be unloaded, and because I can&#39;t change my kernel configuration without rebooting.
</p></div></div><p>
Yeah, it sounds a lot better to build as little into the kernel as possible.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Wed, 05 Dec 2007 07:09:52 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
I have two guesses based on this output: either the kernel doesn&#39;t have appropriate support for my SATA hard drives/disc controller (I should note that my PC might also have a RAID controller)
</p></div></div><p>This sounds like the most likely option. If you can&#39;t find the right module, giving us the output of lspci will help us identify it.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 05 Dec 2007 07:27:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>See if your SATA controller is in raid mode, and turn it off. Try &quot;enhanced&quot; and &quot;compatibility&quot; mode, the latter will make the sata disk appear in the spot the first pata disk usually is.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Wed, 05 Dec 2007 07:49:25 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">CGamesPlay said:</div><div class="quote"><p>
If you can&#39;t find the right module, giving us the output of lspci will help us identify it.
</p></div></div><p>
</p><div class="source-code"><div class="toolbar"></div><div class="inner"><table width="100%"><tbody><tr><td class="number">1</td><td><span class="k2">(</span>chroot<span class="k2">)</span> livecd <span class="k3">/</span> # lspci</td></tr><tr><td class="number">2</td><td><span class="n">00</span><span class="k2">:</span><span class="n">00</span>.<span class="n">0</span> Host bridge: Intel Corporation <span class="n">82945</span>G<span class="k3">/</span>GZ<span class="k3">/</span>P<span class="k3">/</span>PL Memory Controller Hub <span class="k2">(</span>rev <span class="n">81</span><span class="k2">)</span></td></tr><tr><td class="number">3</td><td><span class="n">00</span><span class="k2">:</span><span class="n">01</span>.<span class="n">0</span> PCI bridge: Intel Corporation <span class="n">82945</span>G<span class="k3">/</span>GZ<span class="k3">/</span>P<span class="k3">/</span>PL PCI Express Root Port <span class="k2">(</span>rev <span class="n">81</span><span class="k2">)</span></td></tr><tr><td class="number">4</td><td><span class="n">00</span><span class="k2">:</span><span class="n">1b</span>.<span class="n">0</span> Audio device: Intel Corporation <span class="n">82801</span>G <span class="k2">(</span>ICH7 Family<span class="k2">)</span> High Definition Audio Controller <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">5</td><td><span class="n">00</span><span class="k2">:</span><span class="n">1d</span>.<span class="n">0</span> USB Controller: Intel Corporation <span class="n">82801</span>G <span class="k2">(</span>ICH7 Family<span class="k2">)</span> USB UHCI Controller #<span class="n">1</span> <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">6</td><td><span class="n">00</span><span class="k2">:</span><span class="n">1d</span>.<span class="n">1</span> USB Controller: Intel Corporation <span class="n">82801</span>G <span class="k2">(</span>ICH7 Family<span class="k2">)</span> USB UHCI Controller #<span class="n">2</span> <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">7</td><td><span class="n">00</span><span class="k2">:</span><span class="n">1d</span>.<span class="n">2</span> USB Controller: Intel Corporation <span class="n">82801</span>G <span class="k2">(</span>ICH7 Family<span class="k2">)</span> USB UHCI Controller #<span class="n">3</span> <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">8</td><td><span class="n">00</span><span class="k2">:</span><span class="n">1d</span>.<span class="n">3</span> USB Controller: Intel Corporation <span class="n">82801</span>G <span class="k2">(</span>ICH7 Family<span class="k2">)</span> USB UHCI Controller #<span class="n">4</span> <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">9</td><td><span class="n">00</span><span class="k2">:</span><span class="n">1d</span>.<span class="n">7</span> USB Controller: Intel Corporation <span class="n">82801</span>G <span class="k2">(</span>ICH7 Family<span class="k2">)</span> USB2 EHCI Controller <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">10</td><td><span class="n">00</span><span class="k2">:</span><span class="n">1e</span>.<span class="n">0</span> PCI bridge: Intel Corporation <span class="n">82801</span> PCI Bridge <span class="k2">(</span>rev e1<span class="k2">)</span></td></tr><tr><td class="number">11</td><td><span class="n">00</span><span class="k2">:</span><span class="n">1f</span>.<span class="n">0</span> ISA bridge: Intel Corporation <span class="n">82801</span>GH <span class="k2">(</span>ICH7DH<span class="k2">)</span> LPC Interface Bridge <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">12</td><td><span class="n">00</span><span class="k2">:</span><span class="n">1f</span>.<span class="n">1</span> IDE interface: Intel Corporation <span class="n">82801</span>G <span class="k2">(</span>ICH7 Family<span class="k2">)</span> IDE Controller <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">13</td><td><span class="n">00</span><span class="k2">:</span><span class="n">1f</span>.<span class="n">2</span> RAID bus controller: Intel Corporation <span class="n">82801</span>GR<span class="k3">/</span>GH <span class="k2">(</span>ICH7 Family<span class="k2">)</span> SATA RAID Controller <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">14</td><td><span class="n">00</span><span class="k2">:</span><span class="n">1f</span>.<span class="n">3</span> SMBus: Intel Corporation <span class="n">82801</span>G <span class="k2">(</span>ICH7 Family<span class="k2">)</span> SMBus Controller <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">15</td><td><span class="n">01</span><span class="k2">:</span><span class="n">00</span>.<span class="n">0</span> VGA compatible controller: nVidia Corporation G72 <span class="k2">[</span>GeForce <span class="n">7300</span> LE<span class="k2">]</span> <span class="k2">(</span>rev a1<span class="k2">)</span></td></tr><tr><td class="number">16</td><td><span class="n">02</span><span class="k2">:</span><span class="n">01</span>.<span class="n">0</span> FireWire <span class="k2">(</span>IEEE <span class="n">1394</span><span class="k2">)</span><span class="k2">:</span> VIA Technologies, Inc. IEEE <span class="n">1394</span> Host Controller <span class="k2">(</span>rev c0<span class="k2">)</span></td></tr><tr><td class="number">17</td><td><span class="n">02</span><span class="k2">:</span><span class="n">03</span>.<span class="n">0</span> Ethernet controller: Atheros Communications, Inc. AR5006X <span class="n">802</span>.<span class="n">11ab</span>g NIC <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">18</td><td><span class="n">02</span><span class="k2">:</span><span class="n">04</span>.<span class="n">0</span> Multimedia video controller: Internext Compression Inc iTVC16 <span class="k2">(</span>CX23416<span class="k2">)</span> MPEG-2 Encoder <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr><tr><td class="number">19</td><td><span class="n">02</span><span class="k2">:</span><span class="n">05</span>.<span class="n">0</span> Communication controller: Agere Systems Unknown device <span class="n">0620</span></td></tr><tr><td class="number">20</td><td><span class="n">02</span><span class="k2">:</span><span class="n">08</span>.<span class="n">0</span> Ethernet controller: Intel Corporation <span class="n">82801</span>G <span class="k2">(</span>ICH7 Family<span class="k2">)</span> LAN Controller <span class="k2">(</span>rev <span class="n">01</span><span class="k2">)</span></td></tr></tbody></table></div></div><p>
</p><div class="quote_container"><div class="title">Thomas Fjellstrom said:</div><div class="quote"><p>
See if your SATA controller is in raid mode, and turn it off.
</p></div></div><p>
The hard drives are not actually actively using RAID, but both drives&#39; SATA mode is set to RAID... I read that it is the recommended setting regardless of whether you&#39;re actually using RAID or not for whatever reason... <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> I don&#39;t know.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Wed, 05 Dec 2007 07:55:10 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I have the same SATA controller. Verify that &quot;Intel PIIX/ICH SATA support&quot; is compiled in. You can find it in Device Drivers -&gt; Serial ATA (prod) and Parallel ATA (experimental) drivers (kernel source 2.6.19-gentoo-r5).
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 05 Dec 2007 08:01:36 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
The hard drives are not actually actively using RAID, but both drives&#39; SATA mode is set to RAID... I read that it is the recommended setting regardless of whether you&#39;re actually using RAID or not for whatever reason... <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> I don&#39;t know.
</p></div></div><p>I call bunk. <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" /> I don&#39;t see why it&#39;d be recommended.</p><p>I have a ICH9 version of that chip, and have the following modules loaded:
</p><div class="source-code snippet"><div class="inner"><pre>ata_generic             <span class="n">9988</span>  <span class="n">0</span>
ata_piix               <span class="n">20996</span>  <span class="n">9</span>
</pre></div></div><p>

both are in the initramfs/initrd that &quot;update-initramfs&quot; generated (debian script).</p><p>in fact, everything is set to module..</p><pre>moose@natasha:~/data/Anime$ lsmod
Module                  Size  Used by
snd_rtctimer            5216  0
binfmt_misc            14860  1
coretemp                9856  0
w83627ehf              24464  0
i2c_isa                 6400  1 w83627ehf
i2c_dev                10248  0
i2c_i801               11036  0
cpuid                   5768  0
isofs                  39268  0
udf                    90024  1
nfs                   272728  2
lockd                  76336  2 nfs
sunrpc                198536  3 nfs,lockd
rfcomm                 47656  2
l2cap                  28672  11 rfcomm
bluetooth              63876  4 rfcomm,l2cap
vboxdrv              1649696  0
ppdev                  11272  0
acpi_cpufreq           10632  0
cpufreq_stats           8160  0
cpufreq_ondemand       10896  4
cpufreq_userspace       6048  0
cpufreq_conservative     9608  0
freq_table              6464  3 acpi_cpufreq,cpufreq_stats,cpufreq_ondemand
cpufreq_powersave       3072  0
button                 10400  0
sbs                    21520  0
ac                      7304  0
dock                   12264  0
container               6400  0
video                  21140  0
battery                12424  0
tun                    14080  0
af_packet              28172  2
bridge                 64168  0
ipv6                  317192  14
parport_pc             41896  0
lp                     15048  0
parport                44172  3 ppdev,parport_pc,lp
snd_hda_intel         337192  2
snd_pcm_oss            50048  0
snd_mixer_oss          20096  1 snd_pcm_oss
snd_pcm                94344  2 snd_hda_intel,snd_pcm_oss
snd_seq_dummy           5380  0
snd_seq_oss            36864  0
snd_seq_midi           11008  0
snd_rawmidi            29824  1 snd_seq_midi
snd_seq_midi_event      9984  2 snd_seq_oss,snd_seq_midi
snd_seq                62496  6 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
nvidia               7013492  24
xpad                   11400  0
atl1                   40204  0
lirc_atiusb            21552  1
lirc_dev               18248  1 lirc_atiusb
mii                     7424  1 atl1
snd_timer              27272  3 snd_rtctimer,snd_pcm,snd_seq
i2c_core               30208  5 w83627ehf,i2c_isa,i2c_dev,i2c_i801,nvidia
snd_seq_device         10260  5 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq
snd                    69288  13 snd_hda_intel,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device
psmouse                45596  0
soundcore              10272  1 snd
shpchp                 38300  0
pci_hotplug            36612  1 shpchp
snd_page_alloc         12560  2 snd_hda_intel,snd_pcm
serio_raw               9092  0
pcspkr                  4608  0
intel_agp              30624  0
evdev                  13056  3
usbhid                 32576  0
hid                    33408  1 usbhid
ext3                  146576  4
jbd                    69360  1 ext3
mbcache                11272  1 ext3
sg                     41384  0
sd_mod                 32512  8
sr_mod                 19876  1
cdrom                  41768  1 sr_mod
ata_generic             9988  0
ata_piix               20996  9
libata                138928  2 ata_generic,ata_piix
scsi_mod              172856  4 sg,sd_mod,sr_mod,libata
ehci_hcd               40076  0
uhci_hcd               29600  0
usbcore               161584  6 xpad,lirc_atiusb,usbhid,ehci_hcd,uhci_hcd
thermal                16528  0
processor              36232  2 acpi_cpufreq,thermal
fan                     6920  0
fuse                   52528  5
apparmor               47008  0
commoncap               9472  1 apparmor
</pre><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Wed, 05 Dec 2007 08:24:51 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I wouldn&#39;t go changing your RAID settings at this point, or it&#39;s going to <span class="cuss"><span>fuck</span></span> with your Windows install. At this point, I assume you had to install Windows with a RAID driver. Turning off RAID will likely make windows throw a blue screen pretty quickly on boot.</p><p>Just make sure you have the right drivers compiled IN to your kernel for the controller, and if anything is required for LVM to work, make sure that is compiled in as well. Remember, unless you mess around with initrd&#39;s and stuff, your kernel needs to be able to access your drives without loading any modules.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Wed, 05 Dec 2007 08:31:03 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Just make sure you have the right drivers compiled IN to your kernel for the controller, and if anything is required for LVM to work, make sure that is compiled in as well.
</p></div></div><p>Don&#39;t need to. My servers run off LVM and/or MD raid (root as well), and they are all enabled as modules.</p><p>Thats the joy of initramfs, you just generate a new one, and wham, all the modules you need are loaded before linux even attempts to init the real root filesystem.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Thomas Fjellstrom)</author>
		<pubDate>Wed, 05 Dec 2007 08:33:25 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Thats why I said:</div><div class="quote"><p>

Remember, unless you mess around with initrd&#39;s and stuff, your kernel needs to be able to access your drives without loading any modules.
</p></div></div><p>

<img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Wed, 05 Dec 2007 08:37:52 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Interesting... <img src="http://www.allegro.cc/forums/smileys/huh.gif" alt="???" /> Thanks. I&#39;ll check it out when I get home. Does anybody have an explanation for why grub would interpret them that way?
</p></div></div><p>
<b>Are you even listening to me</b>?!?:o I am trying to help you out...:P Read my post about the file: <a href="http://www.allegro.cc/forums/thread/594244/713171#target">/boot/grub/device.map</a><br />This is also in the Gentoo handbook, in the section about installing grub.::) Also, when in the grub menu on boot, you can hand edit each line. You can use tab completion (limited, and sorta retarded...but doable) to find out what drive hd0 or hd1 is pointing to and what files are in the <i>boot</i> directory (actually where grub was installed).8-)</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
CGamesPlay said:<br />If you can&#39;t find the right module, giving us the output of lspci will help us identify it.
</p></div></div><p>
I believe <b>I have said this in the beginning</b>.:o It would be nice if you showed us the output of <b>lsmod</b> with the gentoo cd kernel running. That way you can get an idea of what modules you will need.:P</p><p>I am willing to help you, but if you are not going to listen, then I am not going to bother...:-/</p><p>With the kernel panic, it sounds as though it could not find the root drive. Most likely cause: invalid SATA controller module, or you are using an IDE controller module with causes your root to actually be /dev/hdb3 instead of /dev/sdb3::) There have been multiple references above about people with that same chipset, so use there SATA module. For something like the drive controller module, if that module fails...what else are you going to do? Compile that into the kernel.:P
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Wed, 05 Dec 2007 09:21:25 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">bamccaig said:</div><div class="quote"><p>

Now I&#39;m intrigued... The Gentoo Handbook made it seem like stage1 and stage2 was obsoleted. Unfortunately, stage1 and stage2 installations are apparently no longer unsupported... <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> Once I figure out the stage3 I&#39;ll probably attempt a stage2 and stage1. <img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" />
</p></div></div><p>
Well, do not do it unless you like watching tons of compilation lines flow through the screen (like me <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" />), because IIRC a stage1 implies compiling the whole toolchain (I guess that&#39;s the right name).</p><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>

Read my post about the file: /boot/grub/device.map
</p></div></div><p>
Not to fight you, but:</p><p>device.map
</p><div class="source-code snippet"><div class="inner"><pre><span class="k2">(</span>fd0<span class="k2">)</span>   <span class="k3">/</span>dev<span class="k3">/</span>fd0
<span class="k2">(</span>hd0<span class="k2">)</span>   <span class="k3">/</span>dev<span class="k3">/</span>sda
<span class="k2">(</span>hd1<span class="k2">)</span>   <span class="k3">/</span>dev<span class="k3">/</span>sdb
</pre></div></div><p>

mount output
</p><div class="source-code snippet"><div class="inner"><pre><span class="k3">/</span>dev<span class="k3">/</span>sdb3 on <span class="k3">/</span> type reiserfs <span class="k2">(</span>rw,noatime<span class="k2">)</span>
proc on <span class="k3">/</span>proc type proc <span class="k2">(</span>rw,nosuid,nodev,noexec<span class="k2">)</span>
sysfs on <span class="k3">/</span>sys type sysfs <span class="k2">(</span>rw,nosuid,nodev,noexec<span class="k2">)</span>
udev on <span class="k3">/</span>dev type tmpfs <span class="k2">(</span>rw,nosuid<span class="k2">)</span>
devpts on <span class="k3">/</span>dev<span class="k3">/</span>pts type devpts <span class="k2">(</span>rw,nosuid,noexec<span class="k2">)</span>
<span class="k3">/</span>dev<span class="k3">/</span>sdb6 on <span class="k3">/</span>mnt<span class="k3">/</span>fat32 type vfat <span class="k2">(</span>rw,noexec,nosuid,nodev,noatime<span class="k2">)</span>
<span class="k3">/</span>dev<span class="k3">/</span>sda1 on <span class="k3">/</span>mnt<span class="k3">/</span>winxp type ntfs <span class="k2">(</span>ro,noatime,<a href="http://www.delorie.com/djgpp/doc/libc/libc_835.html" target="_blank">umask</a><span class="k3">=</span><span class="n">0022</span><span class="k2">)</span>
<span class="k3">/</span>dev<span class="k3">/</span>sdb5 on <span class="k3">/</span>mnt<span class="k3">/</span>winxp-share type ntfs <span class="k2">(</span>ro,noatime,<a href="http://www.delorie.com/djgpp/doc/libc/libc_835.html" target="_blank">umask</a><span class="k3">=</span><span class="n">0022</span><span class="k2">)</span>
shm on <span class="k3">/</span>dev<span class="k3">/</span>shm type tmpfs <span class="k2">(</span>rw,noexec,nosuid,nodev<span class="k2">)</span>
usbfs on <span class="k3">/</span>proc<span class="k3">/</span>bus<span class="k3">/</span>usb type usbfs <span class="k2">(</span>rw,noexec,nosuid,devmode<span class="k3">=</span><span class="n">0664</span>,devgid<span class="k3">=</span><span class="n">85</span><span class="k2">)</span>
binfmt_misc on <span class="k3">/</span>proc<span class="k3">/</span>sys<span class="k3">/</span>fs<span class="k3">/</span>binfmt_misc type binfmt_misc <span class="k2">(</span>rw,noexec,nosuid,nodev<span class="k2">)</span>
<span class="k3">/</span>dev<span class="k3">/</span>sdb1 on <span class="k3">/</span>boot type ext2 <span class="k2">(</span>rw,<a href="http://www.delorie.com/djgpp/doc/libc/libc_798.html" target="_blank">sync</a>,noatime<span class="k2">)</span>
</pre></div></div><p>
grub.conf
</p><div class="source-code snippet"><div class="inner"><pre>title Gentoo kernel-2.6.22-r9
root <span class="k2">(</span>hd0,<span class="n">0</span><span class="k2">)</span>
kernel <span class="k3">/</span>boot<span class="k3">/</span>kernel-2.6.22-r9 root<span class="k3">=</span><span class="k3">/</span>dev<span class="k3">/</span>sdb3 vga<span class="k3">=</span><span class="n">0x31B</span> video<span class="k3">=</span>vesafb:mtrr:3,ywrap,<span class="n">1280x1024</span><span class="k3">-</span><span class="n">32</span>
</pre></div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Marco Radaelli)</author>
		<pubDate>Wed, 05 Dec 2007 17:21:54 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Going with stage1 will only mean you&#39;ll need to compile GCC, glibc, stdlibc++-v3, binutils and a few other packages. It doesn&#39;t take all that much time, actually. Though I haven&#39;t used the official handbook for ages, I usually just get some of the &quot;experimental&quot; guides from Gentoo forum. They mostly go with stage3 base but compile toolchain anyway to make sure that system is as stable as possible.</p><p>When making the first Gentoo install I wouldn&#39;t bother with anythinb tut stage 3. Get something to work and work on from there.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (HoHo)</author>
		<pubDate>Wed, 05 Dec 2007 17:35:05 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
VFS: Cannot open root device &quot;sdb3&quot; or unknown-block(2,0)<br />Please append a correct &quot;root=&quot; boot option; here are the available options:<br />0300      130528   hda driver:  ide-cdrom<br />0340     4194302   hdb driver:  ide-cdrom<br />Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(2,0)
</p></div></div><p>
It is as I feared. Your kernel is compiled with the IDE modules...NOT your SATA modules.::) Also, are you using hd0,1 or hd1,0 for the root in your /boot/grub/grub.conf file?<br />This should be something like:
</p><div class="source-code snippet"><div class="inner"><pre>root <span class="k2">(</span>hd1,<span class="n">0</span><span class="k2">)</span>      <span class="c">//really /dev/sdb1, partition 1.</span>
<span class="c">// If you installed boot on your third partition... use root (hd1,2) (3-1=2)</span>
kernel <span class="k3">/</span>vmlinuz-2.6.22-gentoo-r2 root<span class="k3">=</span><span class="k3">/</span>dev<span class="k3">/</span>sdb3 <span class="c">//set root= to your actual / directory</span>
</pre></div></div><p>

You can also use the new style ATA modules for your IDE CDROM drives as well...they would become: /dev/sr0 and /dev/sr1. I believe that the major push is towards this anyway, as quite a few distros are doing this. You may experience problems running both subsystems (the new style ATA and the old style).</p><p>Also, make sure you compiled in support for the filesystem you are using. If you did not compile in support for reiserfs and you are using reiserfs as your filesystem...well, no wonder it doesn&#39;t work!::)</p><p>I believe there have been a couple of people here that said they had that same chipset. Just find those in your kernel&#39;s menuconfig and make sure they are being compiled in.::)</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Not to fight you, but:</p><p>device.map</p><p>(fd0)   /dev/fd0<br />(hd0)   /dev/sda<br />(hd1)   /dev/sdb
</p></div></div><p>
Actually, you can change that file to say whatever you want after...but if you don&#39;t do the grub setup again...it does not take effect!:P
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Wed, 05 Dec 2007 19:26:01 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Actually, you can change that file to say whatever you want after...but if you don&#39;t do the grub setup again...it does not take effect!
</p></div></div><p>
A-ha! I didn&#39;t know <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Marco Radaelli)</author>
		<pubDate>Wed, 05 Dec 2007 21:48:40 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I&#39;m going to attempt to rebuild the kernel tonight (I hope). I wish there was a disable-all option so I could start with a bare kernel. IIRC, many of the modules are enabled by default. Thanks to CGamesPlay, Thomas Fjellstrom, BAF, [and anybody I forgot to mention] for the module help. I will try to identify the required modules tonight.
</p><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>
<b>Are you even listening to me</b>?!?:o I am trying to help you out...:P Read my post about the file: /boot/grub/device.map<br />This is also in the Gentoo handbook, in the section about installing grub.::) Also, when in the grub menu on boot, you can hand edit each line. You can use tab completion (limited, and sorta retarded...but doable) to find out what drive hd0 or hd1 is pointing to and what files are in the <i>boot</i> directory (actually where grub was installed).8-)
</p></div></div><p>
Yes, I&#39;m listening to you! <img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" /> I appreciate your help. For whatever reason, booting my slave drive (<tt>/dev/sdb</tt>) from the BIOS makes <tt>grub</tt> believe that it is actually <tt>(hd0)</tt>. This has been confirmed by creating a listing for each and attempting to boot both. I can&#39;t explain, but if you can then please do. Marco Radaelli has confirmed that <tt>grub</tt> works the same way for him. <tt>/dev/sdb</tt> <b><i>should</i></b> be <tt>(hd1)</tt>, and while running from the livecd it truly is, but apparently when booting from the BIOS it becomes <tt>(hd0)</tt>. <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /></p><p>BTW, is there a reason that I don&#39;t have a <a href="http://www.allegro.cc/forums/thread/594244/713336#target"><tt>/boot/grub/device.map</tt></a>?
</p><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>
It would be nice if you showed us the output of lsmod with the gentoo cd kernel running. That way you can get an idea of what modules you will need.:P
</p></div></div><p>
Ah yes, <tt>lsmod</tt>! I was trying to remember what command that was and couldn&#39;t... I did a search of the thread and couldn&#39;t find it anywhere (maybe it was said in the last thread?). It was also in the Gentoo Handbook, but at the time I was too exhausted to continue looking for it. I will try to post that tonight.
</p><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>
Also, are you using hd0,1 or hd1,0 for the root in your /boot/grub/grub.conf file?
</p></div></div><p>
I already posted my <a href="http://www.allegro.cc/forums/thread/594244/713336#target"><tt>/boot/grub/grub.conf</tt></a> file and the <a href="http://www.allegro.cc/forums/thread/594244/713589#target">bootable revision</a>. <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Wed, 05 Dec 2007 22:41:29 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>hahahahaha what a roller coaster of a thread, how many days have you been compiling gentoo with all these kids?:P
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (le_y_mistar)</author>
		<pubDate>Wed, 05 Dec 2007 23:07:50 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Yes, I&#39;m listening to you! <img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" /> I appreciate your help.<br />Don Freeman said:<br />Also, are you using hd0,1 or hd1,0 for the root in your /boot/grub/grub.conf file?<br />I already posted my /boot/grub/grub.conf file and the bootable revision. <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div></div><p>
I guess I wasn&#39;t listening...::);D I will try to help you more...got to get back to my computer first.</p><p>In the mean time, try to <br /><a href="http://www.gentoo.org/doc/en/handbook/handbook-x86.xml?style=printable&amp;full=1#grub">read this</a><br />Read the section on the grub shell. I believe that this is what I did because grub-install did not work for me.:o</p><p>If that does not create one for you, simple create the file /boot/grub/default.map Then fill it in like:
</p><div class="source-code snippet"><div class="inner"><pre><span class="k2">(</span>hd0<span class="k2">)</span>     <span class="k3">/</span>dev<span class="k3">/</span>sda
<span class="k2">(</span>hd1<span class="k2">)</span>     <span class="k3">/</span>dev<span class="k3">/</span>sdb
</pre></div></div><p>
And in the /boot/grub/grub.conf file: (using the above example from default.map)
</p><div class="source-code snippet"><div class="inner"><pre>root <span class="k2">(</span>hd1,<span class="n">0</span><span class="k2">)</span>      <span class="c">//really /dev/sdb1</span>
kernel <span class="k3">/</span>vmlinuz-2.6.22-gentoo-r2 root<span class="k3">=</span><span class="k3">/</span>dev<span class="k3">/</span>sdb3 <span class="c">//set root= to your actual / directory</span>
</pre></div></div><p>
Any time that you change the /boot/grub/default.map file you should re-run:
</p><div class="source-code snippet"><div class="inner"><pre><span class="k3">&gt;</span>grub
grub&gt; root <span class="k2">(</span>hd0,<span class="n">0</span><span class="k2">)</span>    #<span class="k2">(</span>Specify where your <span class="k3">/</span>boot partition resides<span class="k2">)</span>
grub&gt; setup <span class="k2">(</span>hd0<span class="k2">)</span>     #<span class="k2">(</span>Install GRUB in the MBR<span class="k2">)</span>
grub&gt; quit            #<span class="k2">(</span>Exit the GRUB shell<span class="k2">)</span>
</pre></div></div><p>
Just remember that the number will be one less than the actual partition number, just like in fdisk. (/dev/sdb1 is really (hd1,0) and /dev/sdb4 is really (hd1,3)::)</p><p>Edit:
</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
For whatever reason, booting my slave drive (/dev/sdb) from the BIOS makes grub believe that it is actually (hd0). This has been confirmed by creating a listing for each and attempting to boot both. I can&#39;t explain, but if you can then please do. Marco Radaelli has confirmed that grub works the same way for him.
</p></div></div><p>
If you are using the BIOS to manually boot your second drive, then it will! If you properly installed grub, then you should not have to do that. You install grub in the mbr of the first drive and then from there, everything is relative to that. If you want to manually boot using your BIOS, then in your /boot/grub/grub.conf:
</p><div class="source-code snippet"><div class="inner"><pre>map <span class="k2">(</span>hd0<span class="k2">)</span> <span class="k2">(</span>hd1<span class="k2">)</span>
map <span class="k2">(</span>hd1<span class="k2">)</span> <span class="k2">(</span>hd0<span class="k2">)</span>
root <span class="k2">(</span>hd1,<span class="n">0</span><span class="k2">)</span>      <span class="c">//really /dev/sdb1</span>
kernel <span class="k3">/</span>vmlinuz-2.6.22-gentoo-r2 root<span class="k3">=</span><span class="k3">/</span>dev<span class="k3">/</span>sdb3 <span class="c">//set root= to your actual</span>
</pre></div></div><p>
This will swap the drives around.::)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Thu, 06 Dec 2007 04:47:17 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>
It would be nice if you showed us the output of lsmod with the gentoo cd kernel running. That way you can get an idea of what modules you will need.:P
</p></div></div><p>
</p><div class="source-code"><div class="toolbar"></div><div class="inner"><table width="100%"><tbody><tr><td class="number">1</td><td>livecd <span class="k3">/</span>root # lsmod</td></tr><tr><td class="number">2</td><td>Module                  Size  Used by</td></tr><tr><td class="number">3</td><td>sg                     <span class="n">19484</span>  <span class="n">0</span> </td></tr><tr><td class="number">4</td><td>eth1394                <span class="n">12548</span>  <span class="n">0</span> </td></tr><tr><td class="number">5</td><td>e100                   <span class="n">22792</span>  <span class="n">0</span> </td></tr><tr><td class="number">6</td><td>mii                     <span class="n">3968</span>  <span class="n">1</span> e100</td></tr><tr><td class="number">7</td><td>rtc                     <span class="n">7476</span>  <span class="n">0</span> </td></tr><tr><td class="number">8</td><td>tg3                    <span class="n">88324</span>  <span class="n">0</span> </td></tr><tr><td class="number">9</td><td>e1000                  <span class="n">90432</span>  <span class="n">0</span> </td></tr><tr><td class="number">10</td><td>nfs                    <span class="n">85180</span>  <span class="n">0</span> </td></tr><tr><td class="number">11</td><td>lockd                  <span class="n">41352</span>  <span class="n">1</span> nfs</td></tr><tr><td class="number">12</td><td>sunrpc                 <span class="n">99644</span>  <span class="n">2</span> nfs,lockd</td></tr><tr><td class="number">13</td><td>jfs                   <span class="n">143340</span>  <span class="n">0</span> </td></tr><tr><td class="number">14</td><td>dm_mirror              <span class="n">13008</span>  <span class="n">0</span> </td></tr><tr><td class="number">15</td><td>dm_mod                 <span class="n">31896</span>  <span class="n">1</span> dm_mirror</td></tr><tr><td class="number">16</td><td>pdc_adma                <span class="n">4868</span>  <span class="n">0</span> </td></tr><tr><td class="number">17</td><td>sata_mv                <span class="n">11656</span>  <span class="n">0</span> </td></tr><tr><td class="number">18</td><td>ata_piix                <span class="n">8072</span>  <span class="n">0</span> </td></tr><tr><td class="number">19</td><td>ahci                   <span class="n">11268</span>  <span class="n">0</span> </td></tr><tr><td class="number">20</td><td>sata_qstor              <span class="n">4996</span>  <span class="n">0</span> </td></tr><tr><td class="number">21</td><td>sata_vsc                <span class="n">4100</span>  <span class="n">0</span> </td></tr><tr><td class="number">22</td><td>sata_uli                <span class="n">3204</span>  <span class="n">0</span> </td></tr><tr><td class="number">23</td><td>sata_sis                <span class="n">3844</span>  <span class="n">0</span> </td></tr><tr><td class="number">24</td><td>sata_sx4                <span class="n">8452</span>  <span class="n">0</span> </td></tr><tr><td class="number">25</td><td>sata_nv                 <span class="n">4740</span>  <span class="n">0</span> </td></tr><tr><td class="number">26</td><td>sata_via                <span class="n">4868</span>  <span class="n">0</span> </td></tr><tr><td class="number">27</td><td>sata_svw                <span class="n">3844</span>  <span class="n">0</span> </td></tr><tr><td class="number">28</td><td>sata_sil24              <span class="n">8708</span>  <span class="n">0</span> </td></tr><tr><td class="number">29</td><td>sata_sil                <span class="n">5384</span>  <span class="n">0</span> </td></tr><tr><td class="number">30</td><td>sata_promise            <span class="n">6276</span>  <span class="n">0</span> </td></tr><tr><td class="number">31</td><td>libata                 <span class="n">61460</span>  <span class="n">15</span> pdc_adma,sata_mv,ata_piix,ahci,sata_qstor,sata_vsc,sata_uli,sata_sis,sata_sx4,sata_nv,sata_via,sata_svw,sata_sil24,sata_sil,sata_promise</td></tr><tr><td class="number">32</td><td>sbp2                   <span class="n">15364</span>  <span class="n">0</span> </td></tr><tr><td class="number">33</td><td>ohci1394               <span class="n">24880</span>  <span class="n">0</span> </td></tr><tr><td class="number">34</td><td>ieee1394               <span class="n">53176</span>  <span class="n">3</span> eth1394,sbp2,ohci1394</td></tr><tr><td class="number">35</td><td>sl811_hcd               <span class="n">8320</span>  <span class="n">0</span> </td></tr><tr><td class="number">36</td><td>usbhid                 <span class="n">29792</span>  <span class="n">0</span> </td></tr><tr><td class="number">37</td><td>ohci_hcd               <span class="n">13572</span>  <span class="n">0</span> </td></tr><tr><td class="number">38</td><td>uhci_hcd               <span class="n">15240</span>  <span class="n">0</span> </td></tr><tr><td class="number">39</td><td>usb_storage            <span class="n">57280</span>  <span class="n">0</span> </td></tr><tr><td class="number">40</td><td>ehci_hcd               <span class="n">19976</span>  <span class="n">0</span> </td></tr><tr><td class="number">41</td><td>usbcore                <span class="n">78084</span>  <span class="n">7</span> sl811_hcd,usbhid,ohci_hcd,uhci_hcd,usb_storage,ehci_hcd</td></tr></tbody></table></div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Thu, 06 Dec 2007 05:02:54 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Hi bamccaig...I edited my last post. Read the edit about the map command. Slow getting home.:&#39;( Thanks for posting that...should help us figure that out for you.8-)</p><p>Edit:<br />Also, what are your modules that you have in your kernel? You can post your /usr/src/linux/.config file.::) This way we can see what you need compared to what you selected.:D
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Thu, 06 Dec 2007 05:07:02 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>
If you properly installed grub, then you should not have to do that. You install grub in the mbr of the first drive and then from there, everything is relative to that.
</p></div></div><p>
Yeah, but I&#39;ve heard that Windows has a tendency to overwrite the MBR at it&#39;s own leisure, which for dual-booters can often require booting a rescue CD or something to reinstall their bootloader. I just find it easier to install grub on my slave drive and boot my slave drive from my BIOS.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Thu, 06 Dec 2007 05:13:57 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I have done this and yet to have had a problem. The only time windows will try to rewrite the mbr is if you are reinstalling windows. Even then, a simple boot into you distro of choice, and do a grub-install. Simple.;) Even better, keep a backup of the mbr for situations like this.8-)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Thu, 06 Dec 2007 05:22:25 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Am i the only one who finds le_y_mistar annoying? And I don&#39;t even use gentoo.</p><p>My god, there is not a single thread where you don&#39;t mention gentoo. It&#39;s almost like gentoo broke your heart at some point, and you are really really bitter about it.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Jonatan Hedborg)</author>
		<pubDate>Thu, 06 Dec 2007 05:22:35 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I totally agree....if he doesn&#39;t like Gentoo...then go somewhere else...or at least shut the <span class="cuss"><span>fuck</span></span> up!;D
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Thu, 06 Dec 2007 05:24:08 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Don Freeman said:</div><div class="quote"><p>
Also, what are your modules that you have in your kernel? You can post your /usr/src/linux/.config file.::) This way we can see what you need compared to what you selected.:D
</p></div></div><p>
<a href="http://www.allegro.cc/files/attachment/593878"><tt>/usr/src/linux/.config</tt></a> <img src="http://www.allegro.cc/forums/smileys/embarassed.gif" alt=":-[" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Thu, 06 Dec 2007 05:35:16 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Ok...I am fixing this for you...<br />You may need to look at some of this to see if you need things like PCI Express support (I don&#39;t). Bump me after reading this so I can post the updated config and tell you how to use it.8-)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Thu, 06 Dec 2007 06:03:19 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>bamccaig, what is your current status? <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Thu, 06 Dec 2007 06:09:43 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">CGamesPlay said:</div><div class="quote"><p>
bamccaig, what is your current status? <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div></div><p>
Too exhausted to attempt to compile a kernel tonight... <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" /> Tomorrow (or at the latest, the weekend) I will try again...
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Thu, 06 Dec 2007 06:14:47 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>bamccaig: what kind of sound card and video card do you have...I almost have your .config done...::)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Thu, 06 Dec 2007 06:17:56 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>So this is your most recent kernel output? <a href="http://www.allegro.cc/forums/thread/594244/713620#target">http://www.allegro.cc/forums/thread/594244/713620#target</a>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Thu, 06 Dec 2007 06:18:47 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Never mind...<a href="http://www.allegro.cc/files/attachment/593881">this</a> should work!;D Do the following:</p><div class="source-code snippet"><div class="inner"><pre><span class="k3">&gt;</span>cp config <span class="k3">/</span>usr<span class="k3">/</span>src<span class="k3">/</span>linux<span class="k3">/</span>.config
<span class="k3">&gt;</span>cd <span class="k3">/</span>usr<span class="k3">/</span>src<span class="k3">/</span>linux
<span class="k3">&gt;</span>make oldconfig
<span class="k3">&gt;</span>make menuconfig
<span class="k3">&gt;</span>make <span class="k3">&amp;</span><span class="k3">&amp;</span> make modules_install <span class="k3">&amp;</span><span class="k3">&amp;</span> make install
</pre></div></div><p>

That should do ya!::)8-)</p><p>Edit:<br />I will check on you kiddies latter...gotta go shoppin.:&#39;( Must..get..caffeine..;D
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Thu, 06 Dec 2007 06:34:52 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Am i the only one who finds le_y_mistar annoying? And I don&#39;t even use gentoo.</p><p>My god, there is not a single thread where you don&#39;t mention gentoo. It&#39;s almost like gentoo broke your heart at some point, and you are really really bitter about it.
</p></div></div><p>

Just ignore him. If he doesn&#39;t get any attention for trolling, he will stop eventually. <img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (BAF)</author>
		<pubDate>Thu, 06 Dec 2007 06:41:24 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">CGamesPlay said:</div><div class="quote"><p>
So this is your most recent kernel output?
</p></div></div><p>
Yep.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Thu, 06 Dec 2007 06:54:21 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I&#39;ve modified your config file. It should work for you. It is <b><a href="http://www.allegro.cc/files/attachment/593881">here</a></b>, along with <b><a href="http://www.allegro.cc/forums/thread/594244/713860#target">instructions on how to use it.</a></b> Well...got to get some sleep. 6:00am comes early.:-/Will check in later tomorrow. Don&#39;t know if I will get a chance to at work, but hopefully.8-)
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Don Freeman)</author>
		<pubDate>Wed, 12 Dec 2007 21:53:03 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><tt>&quot;Clear!&quot; [Bzzzt!]</tt>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Wed, 12 Dec 2007 21:53:33 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Uhm, we&#39;re waiting for output from you...
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 12 Dec 2007 22:04:09 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">CGamesPlay said:</div><div class="quote"><p>
Uhm, we&#39;re waiting for output from you...
</p></div></div><p>
I was just keeping it alive until I could get around to...requiring output. <img src="http://www.allegro.cc/forums/smileys/embarassed.gif" alt=":-[" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Wed, 12 Dec 2007 22:19:58 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>You could have made a part three.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (MiquelFire)</author>
		<pubDate>Wed, 12 Dec 2007 22:31:26 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Naw, trilogies never work out. Just look at the Matrix and Pirates of the Caribbean.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 12 Dec 2007 22:43:54 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Or Star Wars.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Jakub Wasilewski)</author>
		<pubDate>Thu, 13 Dec 2007 00:44:38 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>still compiling gentoo with fellow neckbeards?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (le_y_mistar)</author>
		<pubDate>Thu, 13 Dec 2007 01:03:28 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">le_y_mistar said:</div><div class="quote"><p>
still compiling gentoo with fellow neckbeards?
</p></div></div><p>
<img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (bamccaig)</author>
		<pubDate>Thu, 13 Dec 2007 01:14:21 +0000</pubDate>
	</item>
</rss>
