Differences
This shows you the differences between two versions of the page.
— |
computer:copying_block_devices_using_netcat [2010/07/02 11:22] (current) tdobes created |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Using Netcat to migrate VM's / copy block devices ====== | ||
+ | on ''castor'': | ||
+ | <code> | ||
+ | dd if=/dev/mirrorraid/vm-114-disk-1 bs=1M | nc pollux 9114 | ||
+ | </code> | ||
+ | on ''pollux'': | ||
+ | <code> | ||
+ | nc -l -p 9114 | dd of=/dev/mirrorraid/vm-114-disk-1 bs=1M | ||
+ | </code> |