Migrating a physical Linux server

Make a copy of your hard drive with the command:

dd if=/dev/sda of=/mnt/backup/sda.img bs=8M conv=sync,noerror

if=/dev/sda - copy the entire sda hard drive;

of=/mnt/backup/sda.img - copy to /mnt/backup/sda.img, where the /mnt/backup directory is the mount point of the disk that will contain the image;

bs=8M - set the hard disk cache size to speed up the copy process (otherwise the data will be reset in small portions of 512 bytes);

conv=sync,noerror - indicate dd to copy by bit type regardless of read errors.

Convert the resulting image to vmdk using QEMU (see article).

Next, you can use VMware Workstation Pro to create a machine from the converted disc and export it to OVF (see article)

 

Have you tried Cloud4U cloud services? Not yet?

Go to the Main Website

Try for free

  • 45 Users Found This Useful
Was this answer helpful?

Related Articles

Converting KVM, Xen disks to VMware via QEMU

One way to migrate to an ESXi (VMware) hypervisor is to convert a KVM or Xen disk using the...

Converting a VHD disk to VMDK format with StarWind V2V Converter

The free product StarWind V2V Converter makes it easy to convert virtual machines and their disks...

Exporting a machine with VMware vSphere client

If there is a task to upload the virtual machine in OVF or OVA format and access is performed...

Creating a machine from vmdk disk, exporting to OVF

To create a machine and export to OVF, we suggest using VMware Workstation Pro From the File...

Windows Physical Server Migration

To convert a physical server to a virtual machine, VMware® vCenter Converter Standalone must be...