码迷,mamicode.com
首页 > 其他好文 > 详细

dd命令使用详情

时间:2017-08-29 18:56:34      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:dd

dd的参数

if=inputfile(输入文件名,默认为stdin)

of=outfile(输出文件名,默认为stdout)

ibs=input bytes

obs=output bytes

bs=bytes

cbs=conversion bytes

。。。。


其他的省略。

example:

dd if=/dev/sda of=/dev/sdb

dd if=/dev/sda of=/mnt/ext/image.img

dd if=/mnt/ext/image.img /dev/sda

dd if=/dev/sda | gzip > /mnt/ext/image.gz

gzip -dc /mnt/ext/image.gz | dd of=/dev/sda


dd if=/dev/urandom of=/dev/sda


测试硬盘的读写速度,命令的执行时间

dd if=/dev/zero bs=1024 count=10000000 of=/1GB.file(磁盘写)

dd if=/1GB.file bs=64K | dd of=/dev/null(磁盘读)


测试硬盘的最佳块大小,命令的执行时间

dd if=/dev/zero bs=1024 count=100000000 of=/1GB.file

dd if=/dev/zero bs=2048 count=50000000 of=/1GB.file

dd if=/dev/zero bs=4096 count=25000000 of=/1GB.file

dd if=/dev/zero bs=8192 count=12500000 of=/1GB.file


修复硬盘

dd if=/dev/sda of=/dev/sda












dd命令使用详情

标签:dd

原文地址:http://ting2junshui.blog.51cto.com/975290/1960902

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!