Linux dd命令简介

dd 功能强大的复制命令

if=文件名 源文件
of=文件名 目标文件
bs=xxx 块大小(单位:字节byte,1千字节(kb)=1024字节(b))
count=n 复制块的数量
(if=/dev/sda可以用 < /dev/sda来代替。of=/dev/sdb 也可以用 > /dev/sdb来代替)
例:用备份过的mbr恢复硬盘上的mbr及spt

dd < /root/mbr > /dev/sda bs=512 count=1

通过比较dd指令输出中所显示的命令执行时间,确定系统最佳的block size大小

dd if=/dev/zero bs=1024 count=1000000 of=/root/1Gb.file
dd if=/dev/zero bs=2048 count=500000 of=/root/1Gb.file
dd if=/dev/zero bs=4096 count=250000 of=/root/1Gb.file
dd if=/dev/zero bs=8192 count=125000 of=/root/1Gb.file

[root@localhost ~]# dd if=/dev/zero bs=1024 count=1000000 of=/root/1Gb.file
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 2.9022 s, 353 MB/s
[root@localhost ~]# dd if=/dev/zero bs=2048 count=500000 of=/root/1Gb.file
500000+0 records in
500000+0 records out
1024000000 bytes (1.0 GB) copied, 2.05022 s, 499 MB/s
[root@localhost ~]# dd if=/dev/zero bs=4096 count=250000 of=/root/1Gb.file
250000+0 records in
250000+0 records out
1024000000 bytes (1.0 GB) copied, 2.00047 s, 512 MB/s
[root@localhost ~]# dd if=/dev/zero bs=8192 count=125000 of=/root/1Gb.file
125000+0 records in
125000+0 records out
1024000000 bytes (1.0 GB) copied, 1.44402 s, 709 MB/s

dd if=/root/1Gb.file bs=64k of=/dev/null
dd if=/dev/zero of=/root/1Gb.file bs=1024 count=1000000
通过上两个命令输出的执行时间,可以计算出测试硬盘的读/写速度

[root@localhost ~]# dd if=/root/1Gb.file bs=64k of=/dev/null
15625+0 records in
15625+0 records out
1024000000 bytes (1.0 GB) copied, 0.805 s, 1.3 GB/s
[root@localhost ~]# dd if=/dev/zero of=/root/1Gb.file bs=1024 count=1000000
1000000+0 records in
1000000+0 records out
1024000000 bytes (1.0 GB) copied, 3.29041 s, 311 MB/s

/dev/null 外号叫无底洞,你可以向它输出任何数据,它通吃,并且不会撑着!
/dev/zero 是一个输入设备,你可你用它来初始化文件。该设备无穷尽地提供0。

磁盘压力测试

[root@rhj bin]# cat dd.sh
#!/bin/bash
for n in {1..3}; do
dd if=/dev/zero of=/mnt/test bs=1024 count=10
echo "dd command has excuted $n Times"
cd /mnt
rm -f test
echo "del $n times ok"
done
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值