2003-09-11 22:35:35 +01:00
|
|
|
<sect1 id="ch08-grub">
|
|
|
|
<title>Making the LFS system bootable</title>
|
|
|
|
<?dbhtml filename="grub.html" dir="chapter08"?>
|
|
|
|
|
2003-10-15 09:31:59 +01:00
|
|
|
<para>Your shiny new LFS system is almost complete. One of the last things to
|
|
|
|
do is ensure you can boot it. The instructions below apply only to computers
|
|
|
|
of IA-32 architecture, i.e. mainstream PC's. Information on "boot loading" for
|
|
|
|
other architectures should be available in the usual resource specific
|
|
|
|
locations for those architectures.</para>
|
|
|
|
|
|
|
|
<para>Boot loading can be a complex area. First, a few cautionary words. You
|
|
|
|
really should be familiar with your current boot loader and any other
|
|
|
|
operating systems present on your hard drive(s) that you might wish to keep
|
|
|
|
bootable. Please make sure that you have an emergency boot disk ready, so that
|
|
|
|
you can rescue your computer if, by any chance, your computer becomes unusable
|
|
|
|
(unbootable).</para>
|
|
|
|
|
|
|
|
<para>Earlier, we compiled and installed the Grub boot loader software in
|
|
|
|
preparation for this step. The procedure involves writing some special Grub
|
|
|
|
files to specific locations on the hard drive. Before we get to that, we
|
|
|
|
highly recommend that you create a Grub boot floppy diskette just in case.
|
|
|
|
Insert a blank floppy diskette and run the following commands:</para>
|
|
|
|
|
|
|
|
<screen><userinput>dd if=/boot/grub/stage1 of=/dev/fd0 bs=512 count=1
|
|
|
|
dd if=/boot/grub/stage2 of=/dev/fd0 bs=512 seek=1</userinput></screen>
|
|
|
|
|
|
|
|
<para>Remove the diskette and store it somewhere safe. Now we'll run the
|
2003-10-22 23:26:46 +01:00
|
|
|
<userinput>grub</userinput> shell:</para>
|
2003-09-12 01:47:51 +01:00
|
|
|
|
2003-10-10 00:22:07 +01:00
|
|
|
<screen><userinput>grub</userinput></screen>
|
2003-09-12 01:47:51 +01:00
|
|
|
|
2003-10-08 23:31:01 +01:00
|
|
|
<para>Grub uses its own naming structure for drives and partitions, in the form
|
|
|
|
of (hdn,m), where <emphasis>n</emphasis> is the hard drive number, and
|
|
|
|
<emphasis>m</emphasis> the partition number, both starting from zero. This
|
|
|
|
means, for instance, that partition <filename>hda1</filename> is (hd0,0) to
|
|
|
|
Grub, and <filename>hdb2</filename> is (hd1,1). In contrast to Linux, Grub
|
|
|
|
doesn't consider CD-ROM drives to be hard drives, so if you have a CD on
|
|
|
|
<filename>hdb</filename>, for example, and a second hard drive on
|
|
|
|
<filename>hdc</filename>, that second hard drive would still be (hd1).</para>
|
2003-09-12 01:47:51 +01:00
|
|
|
|
2003-10-08 23:31:01 +01:00
|
|
|
<para>Using the above information, determine the appropriate designator for
|
2003-10-09 23:35:55 +01:00
|
|
|
your root partition. For the following example, we'll assume your root
|
|
|
|
partition is <filename>hda4</filename>.</para>
|
2003-09-12 01:47:51 +01:00
|
|
|
|
2003-10-08 23:31:01 +01:00
|
|
|
<para>First, tell Grub where to search for its <filename>stage{1,2}</filename>
|
|
|
|
files -- you can use Tab everywhere to make Grub show the alternatives:</para>
|
2003-09-12 01:47:51 +01:00
|
|
|
|
2003-10-10 00:22:07 +01:00
|
|
|
<screen><userinput>root (hd0,3)</userinput></screen>
|
2003-09-12 01:47:51 +01:00
|
|
|
|
2003-10-15 09:31:59 +01:00
|
|
|
<!-- HACK - Force some whitespace to appease tidy -->
|
|
|
|
<literallayout></literallayout>
|
|
|
|
|
|
|
|
<warning><para>The following command will overwrite your current boot loader.
|
|
|
|
Don't run the command if this is not what you want. For example, you may be
|
|
|
|
using a third party boot manager to manage your MBR (Master Boot Record). In
|
|
|
|
this scenario, it would probably make more sense to install Grub into the
|
2003-10-22 23:26:46 +01:00
|
|
|
"boot sector" of the LFS partition, in which case the command would become:
|
|
|
|
<userinput>setup (hd0,3)</userinput>.</para></warning>
|
2003-10-15 09:31:59 +01:00
|
|
|
|
|
|
|
<!-- HACK - Force some whitespace to appease tidy -->
|
|
|
|
<literallayout></literallayout>
|
|
|
|
|
2003-10-08 23:31:01 +01:00
|
|
|
<para>Then tell it to install itself into the MBR (Master Boot Record) of
|
|
|
|
<filename>hda</filename>:</para>
|
2003-09-12 01:47:51 +01:00
|
|
|
|
2003-10-10 00:22:07 +01:00
|
|
|
<screen><userinput>setup (hd0)</userinput></screen>
|
2003-10-08 23:31:01 +01:00
|
|
|
|
|
|
|
<para>If all is well, Grub will have reported finding its files in
|
2003-10-15 09:31:59 +01:00
|
|
|
<filename>/boot/grub</filename>. That's all there is to it:</para>
|
2003-10-08 23:31:01 +01:00
|
|
|
|
2003-10-10 00:22:07 +01:00
|
|
|
<screen><userinput>quit</userinput></screen>
|
2003-10-08 23:31:01 +01:00
|
|
|
|
2003-10-22 23:26:46 +01:00
|
|
|
<para>Now we need to create a "menu list" file, defining Grub's boot
|
|
|
|
menu:</para>
|
2003-10-08 23:31:01 +01:00
|
|
|
|
2003-10-10 00:22:07 +01:00
|
|
|
<screen><userinput>cat > /boot/grub/menu.lst << "EOF"</userinput>
|
2003-09-12 01:47:51 +01:00
|
|
|
# Begin /boot/grub/menu.lst
|
|
|
|
|
2003-10-08 23:31:01 +01:00
|
|
|
# By default boot the first menu entry.
|
2003-09-12 01:47:51 +01:00
|
|
|
default 0
|
|
|
|
|
2003-10-08 23:31:01 +01:00
|
|
|
# Allow 30 seconds before booting the default.
|
2003-09-12 01:47:51 +01:00
|
|
|
timeout 30
|
|
|
|
|
2003-10-08 23:31:01 +01:00
|
|
|
# Use prettier colors.
|
2003-09-12 01:47:51 +01:00
|
|
|
color green/black light-green/black
|
|
|
|
|
2003-10-08 23:31:01 +01:00
|
|
|
# The first entry is for LFS.
|
2003-10-16 02:02:39 +01:00
|
|
|
title LFS &milestone;
|
2003-09-12 07:50:02 +01:00
|
|
|
root (hd0,3)
|
2004-01-09 23:45:52 +00:00
|
|
|
kernel --no-mem-option /boot/lfskernel root=/dev/hda4
|
2003-10-10 00:22:07 +01:00
|
|
|
<userinput>EOF</userinput></screen>
|
2003-09-12 01:47:51 +01:00
|
|
|
|
2004-01-09 23:45:52 +00:00
|
|
|
<note><para>By default, Grub will automatically pass a "mem=xxx" command line
|
|
|
|
argument to the kernel. However, Grub sometimes gets the amount of memory wrong
|
|
|
|
which can lead to problems in some circumstances. It's best to disable this
|
|
|
|
functionality and let the kernel determine the amount of memory itself, hence
|
|
|
|
the use of the <emphasis>--no-mem-option</emphasis> above.</para></note>
|
|
|
|
|
2003-10-08 23:31:01 +01:00
|
|
|
<para>You may want to add an entry for your host distribution. It might look
|
|
|
|
like this:</para>
|
2003-09-12 01:47:51 +01:00
|
|
|
|
2003-10-10 00:22:07 +01:00
|
|
|
<screen><userinput>cat >> /boot/grub/menu.lst << "EOF"</userinput>
|
2003-10-08 23:31:01 +01:00
|
|
|
title Red Hat
|
2003-09-12 07:50:02 +01:00
|
|
|
root (hd0,2)
|
2004-01-09 23:45:52 +00:00
|
|
|
kernel /boot/kernel-2.4.20 root=/dev/hda3
|
2003-09-12 07:50:02 +01:00
|
|
|
initrd /boot/initrd-2.4.20
|
2003-10-10 00:22:07 +01:00
|
|
|
<userinput>EOF</userinput></screen>
|
2003-09-12 01:47:51 +01:00
|
|
|
|
|
|
|
<para>Also, if you happen to dual-boot Windows, the following entry should
|
|
|
|
allow booting it:</para>
|
|
|
|
|
2003-10-10 00:22:07 +01:00
|
|
|
<screen><userinput>cat >> /boot/grub/menu.lst << "EOF"</userinput>
|
2003-09-12 07:50:02 +01:00
|
|
|
title Windows
|
|
|
|
rootnoverify (hd0,0)
|
|
|
|
chainloader +1
|
2003-10-10 00:22:07 +01:00
|
|
|
<userinput>EOF</userinput></screen>
|
2003-09-12 01:47:51 +01:00
|
|
|
|
2003-10-08 23:31:01 +01:00
|
|
|
<para>If <userinput>info grub</userinput> doesn't tell you all you want to
|
|
|
|
know, you can find more information regarding Grub on its website, located at:
|
2003-09-29 03:27:27 +01:00
|
|
|
<ulink url="http://www.gnu.org/software/grub"/>.</para>
|
2003-09-11 22:35:35 +01:00
|
|
|
|
|
|
|
</sect1>
|
|
|
|
|