HOWTO Copy files using cp, cpio, dd and tar

http://consultancy.edvoncken.net/index.php/HOWTO_Copy_files_using_cp,_cpio,_dd_and_tar

HOWTO Copy files using cp, cpio, dd and tar

cpio

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.

dd

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'

scp

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

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/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/228190/viewspace-709109/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值