diff options
Diffstat (limited to 'chapter08/grub.xml')
-rw-r--r-- | chapter08/grub.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter08/grub.xml b/chapter08/grub.xml index 3b90f9c67..ac135dc52 100644 --- a/chapter08/grub.xml +++ b/chapter08/grub.xml @@ -28,7 +28,7 @@ into the MBR (Master Boot Record) of hda.</para> <para>Also, we need to create the <filename>menu.lst</filename> file, which Grub uses to designate it's boot menu:</para> -<para><screen><userinput>cat > /boot/grub/menu.lst << "EOF" +<para><screen><userinput>cat > /boot/grub/menu.lst << "EOF" # Begin /boot/grub/menu.lst # Default to first menu entry @@ -48,7 +48,7 @@ EOF</userinput></screen></para> <para>You might also want to add in an entry for your host distribution. It might look similar to this:</para> -<para><screen><userinput>cat >> /boot/grub/menu.lst << "EOF" +<para><screen><userinput>cat >> /boot/grub/menu.lst << "EOF" # Redhat Linux title Redhat kernel (hd0,2)/boot/kernel-2.4.20 root=/dev/hda3 ro @@ -58,7 +58,7 @@ EOF</userinput></screen></para> <para>Also, if you happen to dual-boot Windows, the following entry should allow booting it:</para> -<para><screen><userinput>cat >> /boot/grub/menu.lst << "EOF" +<para><screen><userinput>cat >> /boot/grub/menu.lst << "EOF" # Windows chainloader (hd0,0)+1 EOF</userinput></screen></para> |