系统相关
首页 > 系统相关> > linux下dd命令的使用

linux下dd命令的使用

作者:互联网

一、dd命令

用指定大小的块拷贝一个文件,并在拷贝的同时进行指定的转换。

1、参数注释

2、注意

二、应用实例

1、将本地的/dev/hdb整盘备份到/dev/hdd

dd if=/dev/hdb of=/dev/hdd

2、将/dev/hdb全盘数据备份到指定路径的image文件

dd if=/dev/hdb of=/root/image

3、将备份文件恢复到指定盘

dd if=/root/image of=/dev/hdb

4、备份/dev/hdb全盘数据,并利用gzip工具进行压缩,保存到指定路径

dd if=/dev/hdb | gzip > /root/image.gz

5、将压缩的备份文件恢复到指定盘

gzip -dc /root/image.gz | dd of=/dev/hdb

6、备份MBR

dd if=/dev/hda of=/root/image count=1 bs=512
//count=1指仅拷贝一个块;bs=512指块大小为512个字节。

7、恢复MBR,将备份的MBR信息写到磁盘开始部分

dd if=/root/image of=/dev/hda

8、拷贝内存内容到硬盘

dd if=/dev/mem of=/root/mem.bin bs=1024 (指定块大小为1k)

9、拷贝光盘内容到指定文件夹,并保存为cd.iso文件

d if=/dev/cdrom(hdc) of=/root/cd.iso

 

 

 

本文转载自:https://blog.csdn.net/weixin_45116657/article/details/99131239

标签:dd,bytes,指定,dev,命令,hdb,linux,root
来源: https://www.cnblogs.com/wmate/p/14694272.html