dd命令备份

从远程备份到本地

ssh 10.10.10.1 dd if=/dev/sda | dd of=/opt/system.dd

gzip压缩备份

ssh 10.10.10.1 dd if=/dev/sda | gzip | dd of=/opt/system.dd

从本地备份到远程

dd if=/dev/sda | ssh 10.10.10.1 dd of=/root/system.dd