|
|
本帖最后由 WAANG 于 2014-5-28 17:11 编辑
更新2:
实践证明,我照猫画虎弄得启动设置,虽然成功实现仿真加载win7/8包括XP的iso光盘镜像,但是系统安装时要么提示缺少media的driver(win8的情况)要么直接蓝屏(winxp的情况)。还请大侠具体指点
更新:
我在menu.lst和硬盘里中又上了两个XP iso,仿真加载XP安装光盘也成功了,只是在读取XP光盘内容时突然蓝屏了,不能进行安装,还望大侠详解。是不是XP和win vista/7/8不能同时适用同一个MBR启动记录?
- title 安装 Windows XP Professional with SP3 英文VL版 x86
- find --set-root --ignore-floppies --ignore-cd /en_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73974.iso
- map /en_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73974.iso (0xff)
- map --hook
- chainloader (0xff)
- title 安装 Windows XP Professional with SP3 简体中文VL版 x86
- find --set-root --ignore-floppies --ignore-cd /zh-hans_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74070.iso
- map /zh-hans_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74070.iso (0xff)
- map --hook
复制代码
原帖:
刚刚学者0.46a里面的menu.lst示例,自己做了一个menu.lst
问题1:启动Install Microsoft Windows 8.1 with Update CHS x64时提示error 60: ....(已解决)
问题2:/grub/splashimage.xpm 和splashimage.bmp,到哪里去找?(已解决)
问题3:如何支持中文?(已解决)
- color blue/green yellow/red white/magenta white/magenta
- timeout 30
- ## menu border color
- color border=0xEEFFEE
- ## set vbe mode
- graphicsmode -1 640:800 480:600 24:32 || graphicsmode -1 -1 -1 24:32
- ## loading splashimage
- splashimage /boot/grub/splashimage.xpm || splashimage /boot/grub/splashimage.bmp
- default /default
- ## Menu AutoNumber
- write 0x8274 0x2001
- title Install Microsoft Windows 8.1 with Update CHS x64
- find --set-root --ignore-floppies --ignore-cd /boot/img/cn_windows_8.1_with_update_x64_dvd_4048046.iso
- map /boot/img/cn_windows_8.1_with_update_x64_dvd_4048046.iso (0xff)
- map --hook
- chainloader (0xff)
- title Install Microsoft Windows 8.1 with Update ENG x64
- find --set-root --ignore-floppies --ignore-cd /boot/img/en_windows_8.1_with_update_x64_dvd_4065090.iso
- map /boot/img/en_windows_8.1_with_update_x64_dvd_4065090.iso (0xff)
- map --hook
- chainloader (0xff)
- title Command-Line
- commandline
- title Reboot
- reboot
- title Halt
- halt
复制代码 |
|