Chain Loading


Results 1 to 2 of 2

Thread: Chain Loading

  1. #1
    Join Date
    Jun 2008
    Posts
    10

    Chain Loading

    I'm finding myself lost in this area. I would truly appreciate your help.

    Synopsis

    I've finalized the OS's I intend to multiboot, they are Win XP, Open Solaris 10, Suse 11, and Fedora 9. However, I do not know much about Grubs chainload for the MBR. From my understanding, Xp will be written as (hd0,0).

    Possible Setup

    Would this the be right?

    * Open Solaris 10
    * root (hd0,1)
    * chainloader +1

    * Open Suse 11
    * root (hd0,2)
    * chainloader +1

    * Fedora 9
    * root (hd0,3)
    * chainloader +1

    Hardware

    System Manufacturer Hewlett-Packard
    System Model HP Pavilion dv6000 (GM004UA#ABC)
    System Type X86-based PC
    Processor x86 Family 6 Model 15 Stepping 2 GenuineIntel ~1729 Mhz
    Processor x86 Family 6 Model 15 Stepping 2 GenuineIntel ~1729 Mhz
    BIOS Version/Date Hewlett-Packard F.25, 5/12/2007
    SMBIOS Version 2.4
    Boot Device \Device\HarddiskVolume1
    Locale Mars
    Hw Abstraction Layer Version = "5.1.2600.2180 (xpsp_sp2_rtm.040803-2158)"
    Time Zone Maritan Daylight Time
    Total Physical Memory 2,048.00 MB
    Hard Disk 160 Giigs


    Thanks in Advance


    Masa
    Last edited by masamune; 06-30-2008 at 11:37 AM.

  2. #2
    Join Date
    Jul 2003
    Location
    Salem, Mass USA
    Posts
    51
    If XP is on the first partition then yes it would be (hd0,0). Here's my bootloader.
    Code:
    default=0
    timeout=30
    splashimage=(hd0,5)/boot/grub/splash.xpm.gz
    title   Fedora 9 (2.6.25.6-55.fc9.i686)
    	root (hd0,5)
    	kernel /boot/vmlinuz-2.6.25.6-55.fc9.i686 ro root=UUID=67a30fd4-7022-4ebe-8f9d-07cd2aabd732 vga=791
    	initrd /boot/initrd-2.6.25.6-55.fc9.i686.img
    title   Fedora 8 (2.6.25.6-27.fc8)
    	root (hd0,4)
    	kernel /boot/vmlinuz-2.6.25.6-27.fc8 ro root=LABEL=/ vga=791
    	initrd /boot/initrd-2.6.25.6-27.fc8.img
    title   Windows Vista
    	rootnoverify (hd0,1)
    	chainloader +1
    title	Windows XP
    	root (hd0,2)
    	chainloader +1
    Fedora 9 is handling booting here. Vista is on /dev/sda2 and XP is on /dev/sda3
    Code:
    Disk /dev/sda: 160.0 GB, 160041885696 bytes
    255 heads, 63 sectors/track, 19457 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Disk identifier: 0xb65eac19
    
       Device Boot      Start         End      Blocks   Id  System
    /dev/sda1               1         192     1536000   27  Unknown
    /dev/sda2             192       13975   110712832    7  HPFS/NTFS
    /dev/sda3   *       13976       16586    20972857+   7  HPFS/NTFS
    /dev/sda4           16587       19457    23061307+   5  Extended
    /dev/sda5           16587       17891    10482381   83  Linux
    /dev/sda6           17892       19196    10482381   83  Linux
    /dev/sda7           19197       19457     2096451   82  Linux swap / Solaris
    Glennzo
    Powered by Fedora 17

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •