bootice制作grub4dos的u盘多系统启动(pe、系统启动盘)(未验证)

时间:2021-03-25 05:54:26

http://acer.it168.com/thread-1918776-1-1.html


1.插入u盘。插入u盘之后,运行附件中bootice。确认bootice中已经显示出了u盘。如下图所示,有显示usb:xxxx


2.确认bootice读取到u盘之后,点主引导记录,然后选择GRUB for DOS O.4.5.a,然后点安装配置
bootice制作grub4dos的u盘多系统启动(pe、系统启动盘)(未验证)

3.按照下图所示,勾选最上面两个选择后,点写入磁盘
bootice制作grub4dos的u盘多系统启动(pe、系统启动盘)(未验证)

4.把我提供的u盘多系统引导菜单.rar压缩包里面的文件解压 到u盘根目录。解压后文件如图所示。
bootice制作grub4dos的u盘多系统启动(pe、系统启动盘)(未验证)

到此,u盘准备的工作完成。下面请看2L,如果添加系统镜像到u盘多系统启动菜单


接着上面的,u盘准备工作做好之后,下面就是将系统镜像添加到u盘多系统启动菜单了。
下面我以添加一个叫做pe.iso的文件为例。
1.将pe.iso文件复制到u盘根目录下,名为iso的文件夹。

2.用txt打开u盘根目录的menu.lst。

3.按照我上面的例子,最后改成下面的样子

    title [1] 启动pe
    fallback 0
    find --set-root /iso/pe.iso
    map /iso/pe.iso (0xff) || map --mem /iso/pe.iso (0xff)
    map --hook
    chainloader (0xff)

4.如果还想添加第二个启动项,继续按照2、3的步骤,修改menu.lst即可。当修改完成之后,保存menu.lst。到此u盘多系统启动菜单就做好了。


5.对于win7的镜像来说,不能使用2、3的步骤写法。我们需要将win7的系统镜像解压u盘跟目录
menu.lst文件部分修改如下
    title [1] 安装 Win7
    fallback 0
    find --set-root --ignore-floppies --ignore-cd /bootmgr
    map () (hd0)
    map (hd0) ()
    map --rehook
    find --set-root --ignore-floppies --ignore-cd /bootmgr
    chainloader /bootmgr


6.最后,给个做好的启动菜单menu.lst中的全部代码
    checkrange 0x21 read 0x8280 && pxe detect NotExist
    timeout=10
    default=0
    gfxmenu /GrubFiles/message
    configfile (md)4+8
    title [1] 安装 Win7
    fallback 0
    find --set-root --ignore-floppies --ignore-cd /bootmgr
    map () (hd0)
    map (hd0) ()
    map --rehook
    find --set-root --ignore-floppies --ignore-cd /bootmgr
    chainloader /bootmgr
    title [2] 启动小马PE
    fallback 0
    find --set-root /iso/pe_ma.iso
    map /iso/pe_ma.iso (0xff) || map --mem /iso/pe_ma.iso (0xff)
    map --hook
    chainloader (0xff)