dd命令制作光盘映像文件
[[email protected] /]$ dd if=/dev/cdrom of=/2015/1.iso 执行命令
8502692+0 records in
8502692+0 records out
4353378304 bytes (4.4 GB) copied, 191.628 s, 22.7 MB/s
[[email protected] /]$ cd 2015
[[email protected] 2015]$ ll 查询结果
total 4251352
-rw-rw-r--. 1 srd srd 4353378304 Jan 25 13:52 1.iso
[[email protected] 2015]$
1. if=文件名:输入文件名,缺省为标准输入。即指定源文件。< if=input file >
2. of=文件名:输出文件名,缺省为标准输出。即指定目的文件。< of=output file >
dd可用过整个盘的数据的复制和备份
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
时间: 2024-10-11 23:50:09