Copy all files, less than 5GB in size, to another host using SSH:
find . -size -5G -print0 |cpio --null -oaV | ssh remotehost 'cd /var/lib/xen && cpio -imVd'
I used this example to backup small Xen instances to a second server.
Copy a file to another host using SSH:
dd if=/source/file | ssh remotehost 'dd f=/destination/file'
I actually used the command below to create a backup of a large (1TB) LVM partition containing a Xen guest image:
dd if=/dev/vg_dom0/lv_domU_fileserver | ssh zen 'dd f=/dev/vg_md1/lv_domU_guardian'
Secure Copy can only copy regular files - for copying LVM partitions, you'll need to use a different mechanism (for example, using dd|ssh|dd).
scp /source/file user@remotehost:/destination/file
Tar is nice for copying entire directory trees, including symlinks.
cd /source/dir && tar cf - . | (cd /destination/dir && tar xvf -)
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/228190/viewspace-709109/,如需转载,请注明出处,否则将追究法律责任。