|
操作系统:winxp sp3
磁盘分区C、D、E均为NTFS格式
dd for windows 版本 5.0
dd for windows备份C分区的分区引导:
dd if=\\?\Device\Harddisk0\Partition1 of=E.BIN count=16 bs=512 --progress --size
执行后出错:
rawwrite dd for windows version 0.5.
Written by John Newbigin <jn@it.swin.edu.au>
This program is covered by the GPL. See copying.txt for details
Error native opening input file: 0 操作成功完成。
是怎么回事呢,难道是C分区的分区引导正在被使用
如果用下面的命令,又不会出错:
dd if=\\?\Device\Harddisk0\Partition0 of=E.BIN count=16 bs=512 skip=63 --progress --size
|
|