Differences between revisions 1 and 2
Revision 1 as of 2010-02-20 01:01:09
Size: 123
Editor: CarlNobile
Comment:
Revision 2 as of 2010-02-20 01:19:47
Size: 1220
Editor: CarlNobile
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:

You will need to run on each partition that you will be installing an OS on the following command:

(Change the path and device to the one's on your machine)

{{{
sudo grub-install --root-directory=/media/disk-N /dev/sddN
}}}

Use the next command if the grub directory already exists in the {{{/boot}}} directory:

{{{
sudo grub-install --recheck --root-directory=/media/disk-N /dev/sddN
}}}

Now you will need to create {{{/boot/grub/menu.lst}}} in the first bootable partition.

I am only using the first two partitions, the fist one has System Restore on it and the second has Xen live disk on it.

{{{
timeout 5
color light-gray/black light-blue/black

title SystemRescueCd 32bit
root (hd0,0)
kernel /isolinux/rescuecd
initrd /isolinux/initram.igz

title SystemRescueCd 64bit
root (hd0,0)
kernel /isolinux/rescue64
initrd /isolinux/initram.igz

# Default for most users
title Xen
rootnoverify (hd0,1)
makeactive
chainloader +1
quiet
}}}

Make sure when you formatted the first partition you turned the bootable flag on.

That's it.

Chain Load Grub

I will be working with grub version 1, an 8 Gig USB stick partitioned in to four equal partitions.

You will need to run on each partition that you will be installing an OS on the following command:

(Change the path and device to the one's on your machine)

sudo grub-install --root-directory=/media/disk-N /dev/sddN

Use the next command if the grub directory already exists in the /boot directory:

sudo grub-install --recheck --root-directory=/media/disk-N /dev/sddN

Now you will need to create /boot/grub/menu.lst in the first bootable partition.

I am only using the first two partitions, the fist one has System Restore on it and the second has Xen live disk on it.

timeout 5
color light-gray/black light-blue/black

title SystemRescueCd 32bit
root   (hd0,0)
kernel /isolinux/rescuecd
initrd /isolinux/initram.igz

title SystemRescueCd 64bit
root   (hd0,0)
kernel /isolinux/rescue64
initrd /isolinux/initram.igz

# Default for most users
title         Xen
rootnoverify  (hd0,1)
makeactive
chainloader   +1
quiet

Make sure when you formatted the first partition you turned the bootable flag on.

That's it.

ChainLoadGrub (last edited 2010-02-20 01:21:59 by CarlNobile)