|
回复 #1 yinyuan 的帖子
你需要的是 README 中如下的一段:- ******************************************************************************
- *** Parameter file for bootlace running under DOS ***
- ******************************************************************************
- You may move all or part of the command-line arguments into a file. The file
- can have multi lines. Just like SPACEs and TABs, the CRs and LFs can also
- delimit the commandline arguments in the parameter file.
- Example:
- bootlace < my_parafile
- bootlace --read-only my_mbr < my_other_options
- Note: Pipes do not work. You have to use the input-redirection operator(<).
复制代码 --preferred-drive=0 的意思是,软盘 0 为优先搜索的设备。
如果只有一个硬盘,你无需使用 --preferred-drive 和 --preferred-partition 参数,或者你设置 --preferred-drive=0x80 以及 --preferred-partition=分区号 也可以。
主分区的分区号是 0,1,2,3,逻辑分区的分区号是 4,5,6,……
对于软盘、光盘这类不含分区表的设备,其“分区号”用 0xFF 来表示。
多看看 readme 文件,里面有详细介绍。
[ 本帖最后由 不点 于 2012-11-7 10:33 编辑 ] |
|