Chinaunix首页 | 论坛 | 博客
  • 博客访问: 18148
  • 博文数量: 14
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 150
  • 用 户 组: 普通用户
  • 注册时间: 2020-09-11 15:25
文章分类

全部博文(14)

文章存档

2020年(14)

我的朋友
最近访客

分类: Windows平台

2020-09-23 16:07:16

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) |
0

上一篇:sdk与api

下一篇:没有了

给主人留下些什么吧!~~