Multiboot with grldr(slic2.1)

Discussion in 'Windows 7' started by Marlboro, Jan 8, 2010.

  1. Marlboro

    Marlboro MDL Novice

    May 12, 2008
    7
    0
    0
    Multiboot with grldr(zsmin)

    Hi everyone.

    I wonder if anyone have a grldr(zsmin) version with a menu.lst control.

    I want to have a multiboot laptop or PC, and be able to choose the OS to load.
    this is my theorethic inventory:

    PC -> hd0,0(vista), hd0,1(xp), hd0,2(data)

    usbhd_1 -> hd0,0(win7), hd0,1(partition)(data)
    usbhd_2 -> hd0,0(svr2008), hd0,1(partition)(data)

    PC, install grubdos on hd0,0 and replace with grldr(zsmin) w/menu.lst
    tihs is the boot menu:

    # menu.lst boot, for pc with 3 primary partitions
    # menu.lst file on hd0,0 root
    # usbhd_1 file on hd0,0 root of usbhd_1
    # usbhd_2 file on hd0,0 root of usbhd_2

    timeout 30
    default /default

    title windows 7
    fallback 1
    # slic loader
    emulateslic
    find --set-root --ignore-floppies --ignore-cd /usbhd_1
    map () map (hd0)
    map (hd0) map ()
    map --rehook
    find --set-root --ignore-floppies --ignore-cd /bootmgr
    chainloader /bootmgr

    title server 2008
    fallback 2
    emulateslic
    find --set-root --ignore-floppies --ignore-cd /usbhd_2
    map () map (hd0)
    map (hd0) map ()
    map --rehook
    find --set-root --ignore-floppies --ignore-cd /bootmgr
    chainloader /bootmgr

    title Vista SP2
    fallback 3
    # hide (hd0,1) optional if you dont want to see the XP partition
    root (hd0,0)
    # slic loader
    emulateslic
    chainloader /bootmgr

    title windows XP
    fallback 4
    # hide (hd0,0) optional if you dont want to see the vista partition
    root (hd0,1)
    chainloadr /ntldr

    title recovery CD
    # recovery cd on any partition, hd local or usb
    fallback 5
    find --set-root /recovery.iso
    map /recovery.iso (0xff)
    map --hook
    chainloader (0xff)

    title command line
    commandline

    title reboot
    reboot

    # end of menu.lst


    I thanks in advance for your help :)