menu.lst

作者: 吉凶以情迁 | 来源:发表于2018-10-16 23:48 被阅读0次
    # This is a sample menu.lst file. You should make some changes to it.
    # The old install method of booting via the stage-files has been removed.
    # Please install GRLDR boot strap code to MBR with the bootlace.com
    # utility under DOS/Win9x or Linux.
    
    color blue/green yellow/red white/magenta white/magenta
    timeout 30
    default /default
    
    title find and load NTLDR of Windows NT/2K/XP
    fallback 1
    find --set-root --ignore-floppies --ignore-cd /ntldr
    map () (hd0)
    map (hd0) ()
    map --rehook
    find --set-root --ignore-floppies --ignore-cd /ntldr
    chainloader /ntldr
    savedefault --wait=2
    
    title find and load BOOTMGR of Windows VISTA
    fallback 2
    find --set-root --ignore-floppies --ignore-cd /bootmgr
    map () (hd0)
    map (hd0) ()
    map --rehook
    find --set-root --ignore-floppies --ignore-cd /bootmgr
    chainloader /bootmgr
    savedefault --wait=2
    
    title find and load CMLDR, the Recovery Console of Windows NT/2K/XP
    fallback 3
    find --set-root --ignore-floppies --ignore-cd /cmldr
    map () (hd0)
    map (hd0) ()
    map --rehook
    find --set-root --ignore-floppies --ignore-cd /cmldr
    chainloader /cmldr
    #####################################################################
    # write string "cmdcons" to memory 0000:7C03 in 2 steps:
    #####################################################################
    # step 1. Write 4 chars "cmdc" at 0000:7C03
    write 0x7C03 0x63646D63
    # step 2. Write 3 chars "ons" and an ending null at 0000:7C07
    write 0x7C07 0x00736E6F
    savedefault --wait=2
    
    
    title Run HD0
    rootnoverify (hd0,0)
    makeactive
    chainloader +1
    
    
    title Run HD1
    rootnoverify (hd1,0)
    makeactive
    chainloader +1
    
    title find and load IO.SYS of Windows 9x/Me
    fallback 4
    find --set-root /io.sys
    chainloader /io.sys
    savedefault --wait=2
    
    title find and boot 0PE.ISO
    fallback 5
    find --set-root /0PE/0PE.ISO
    map /0PE/0PE.ISO (0xff) || map --mem /0PE/0PE.ISO (0xff)
    map --hook
    chainloader (0xff)
    savedefault --wait=2
    
    title find and boot MicroPE.ISO
    fallback 6
    find --set-root /boot/MicroPE.ISO
    map /boot/MicroPE.ISO (0xff) || map --mem /boot/MicroPE.ISO (0xff)
    map --hook
    chainloader (0xff)
    savedefault --wait=2
    
    title Parted Magic ISO
    fallback 7
    find --set-root /pmagic.iso
    map /pmagic.iso (0xff) || map --mem /pmagic.iso (0xff)
    map --hook
    chainloader (0xff)
    savedefault --wait=2
    
    title Ultimate Boot CD ISO
    fallback 8
    find --set-root /ubcd.iso
    map /ubcd.iso (0xff) || map --mem /ubcd.iso (0xff)
    map --hook
    chainloader (0xff)
    savedefault --wait=2
    
    title commandline
    commandline
    
    title floppy (fd0)
    chainloader (fd0)+1
    rootnoverify (fd0)
    
    title back to dos
    quit
    
    title reboot
    reboot
    
    title halt
    halt
    
    title MAXDOS.IMG
    find --set-root --ignore-floppies /boot/MAXDOS.IMG
    map --mem /boot/MAXDOS.IMG (fd0)
    map --hook
    chainloader (fd0)+1
    rootnoverify (fd0)
    
    
    
    
    title Run HD0.1
    rootnoverify (hd0,1)
    makeactive
    chainloader +1
    
    title Run HD0.2
    rootnoverify (hd0,2)
    makeactive
    chainloader +1
    
    title Run HD0.3
    rootnoverify (hd0,3)
    makeactive
    chainloader +1
    
    title Run Windows NT/2000/XP/2003/ntldr
    find --set-root /ntldr
    chainloader /ntldr
    
    title Run Microsoft Windows 7/bootmgr
    find --set-root /bootmgr
    chainloader /bootmgr
    
    title Run DOS/Windows 95/98/Me io.sys
    find --set-root /io.sys
    chainloader /io.sys
    
    
    
    
    

    如果是在命令行 如果要启动 系统 可以输入
    root(hd0,0)
    敲入完毕之后如果输入正确那么不会提示什么信息,然后输入
    chainloader +1 就可以了

    在老毛桃里面的一键修复的 是 整个分区引导,而是单个磁盘的引导,所以如果需要 用 那个dos4那么只能放弃 用它。。。可能出现问题
    一键修复的那个如果只有一个那么不会出现菜单,多个是可以出现菜单的

    老毛桃u盘系统里面的引导工具很实用。

    如何修复虚拟机里的系统磁盘文件?? 下载通用peiso的 安装包 生成iso文件然后 选择iso引导启动。。

    相关文章

      网友评论

          本文标题:menu.lst

          本文链接:https://www.haomeiwen.com/subject/cjokzftx.html