When copying VM filesystem over netcat, dd copies double the disk size
- by JivanAmara
I'm attempting to copy the disk of a working headless virtualbox VM (VM1) on one server to a new VM (VM2) on a vCloud server. I don't have access to the host of VM2.
The OS is Windows Server 2003 (32-bit)
I start both VMs with a live Knoppix image.
I run 'nc -l | dd of=/dev/sda bs=512' on VM2
I run 'dd if=/dev/sda bs=512 | nc ' on VM1
I…