windows下面的DD工具
作用:可以用来直接读写磁盘
下载网址:
下载dd-0.6beta3.zip
使用方法:
在dd.exe所在目录打开cmd
命令格式:
.\dd 空格 命令
如.\dd --list
.\dd --list
Make an image of a floppy disk:
dd if=\\.\a: of=c:\temp\disk1.img bs=1440k
Write the image back to a floppy disk:
dd if=c:\temp\disk1.img of=\\.\a: bs=1440k
Rip an .iso from a CD
dd if=\\?\Device\CdRom0 of=c:\temp\disc1.iso bs=1M
Read a partition from a USB memory device
dd if=\\.\Volume{c18588c0-02e9-11d8-853f-00902758442b} of=c:\temp\usb1.img bs=1M
Read the entire USB memory device
dd if=\\?\Device\Harddisk1\Partition0 of=c:\temp\usb2.img bs=1M --size --progress
You can write to any file or block device which windows will allow you to write to.
You can use the standard \\.\ notation for win32 exported devices or the dd specific \\?\ notation to access windows native devices.
阅读(2193) | 评论(0) | 转发(0) |