|
2#
楼主 |
发表于 2009-10-3 16:32:23
|
只看该作者
Test FiraDisk with GRUB4DOS mem drive as boot drive
Brief instruction
Install FiraDisk in Windows before making image or cloning Windows
Use another Windows installation (or other OS) to clone Windows to image file
If you use NTFS compression, make sure ntldr in image file is not compressed
If image file have different MBR signature or offset to partition, adjust registry in image file.
load hive \Windows\system32\config\system,
goto key MountedDevices, value \DosDevices\C:
change the data to match MBR signature and byte-offset to partition of disk image
unload hive
Boot from GRUB4DOS
Example menu.lst
CODE
timeout 3
default 0
title hdd.img
map --mem (hd0,0)/hdd.img (hd0)
map --hook
root (hd0,0)
chainloader /ntldr
title commandline
commandline
这里边的
If image file have different MBR signature or offset to partition, adjust registry in image file.
load hive \Windows\system32\config\system,
goto key MountedDevices, value \DosDevices\C:
change the data to match MBR signature and byte-offset to partition of disk image
unload hive
一部分是要求把注册表的MountedDevices 进行怎样的更改呢? |
|