|
原帖关于boot.ini选项不太明白,具体该怎样写呢?
我照着写似乎不行。
哪位朋友帮忙写一个简单但完整的boot.ini?
以下是原帖关于boot.ini选项的写法:
========================分隔符===========================
boot.ini option examples
Boot partition cannot be on these virtual drives.
Create empty virtual disk of specified size in bytes in virtual memory backed by page file.
CODE
/firadisk=disk,vmem,size=16450560
Create virtual disk of specified size backed by specified file.
File size is increased to match specified size. Changes are written to file.
CODE
/firadisk=disk,vmem=C:\hdd3.img,size=32901120
/firadisk=disk,vmem=multi(0)disk(0)rdisk(0)partition(1)\hdd4.img,size=65802240
Create virtual disk backed by specified file. Size of virtual disk is size of file.
CODE
/firadisk=disk,vmem=C:\hdd3.img
/firadisk=disk,vmem=multi(0)disk(0)rdisk(0)partition(1)\hdd4.img
Create virtual CDROM backed by specified file. Size of virtual disk is size of file.
CODE
/firadisk=cdrom,vmem=C:\cd1.iso
Create two virtual drives. Use semicolon to separate entries.
CODE
/firadisk=disk,vmem=C:\hdd3.img;cdrom,vmem=C:\cd1.iso
Create virtual disk backed by specified file starting from specified offset to end of file, or specified size.
Warning: Not tested much yet!
CODE
/firadisk=disk,vmem=C:\hdd5.img,offset=4096
/firadisk=disk,vmem=C:\hdd6.img,offset=32901120,size=32901120
file=path should work the same way as vmem=path. But in my test, it result in error message while formatting new partition in new image file the first time. No error message while formatting it the second time.
FiraDisk description in the first post is updated to match the new capability.
[ 本帖最后由 shuini 于 2009-9-5 00:09 编辑 ] |
|