dd命令来自英文词组disk dump的缩写,其功能是复制及转换文件。使用dd命令可以按照指定大小的数据块来复制文件,并在复制的过程中对内容进行转换。

语法格式:dd  参数 对象

常用参数:

if输入文件 of输出文件
bs块大小count块个数
-h显示帮助信息-v显示版本信息

参考示例

生成一个指定大小(500MB)的新文件:

[root@linuxcool ~]# dd if=/dev/zero of=File count=1 bs=500M 
1+0 records in 
1+0 records out 
524288000 bytes (524 MB, 500 MiB) copied, 1.13337 s, 463 MB/s

复制指定文件的前50个字节:

[root@linuxcool ~]# dd if=File1.cfg of=File2.cfg count=1 bs=50 
1+0 records in 
1+0 records out 
50 bytes copied, 0.000441764 s, 113 kB/s

复制指定文件的内容,并将所有字符转换成大写后输出到新文件中:

[root@linuxcool ~]# dd if=File1.cfg of=File2.cfg conv=ucase 
2+1 records in 
2+1 records out 
1388 bytes (1.4 kB, 1.4 KiB) copied, 0.000234248 s, 5.9 MB/s
Author

这篇优质的内容由TA贡献而来

刘遄

《Linux就该这么学》书籍作者,RHCA认证架构师,教育学(计算机专业硕士)。