To migrate virtual machines from VMware or Hyper-V to Go2Cloud, you need to convert the disk images to raw format using the qemu-img tool.
Converting a VMware image:
qemu-img convert -f vmdk -O raw your-image.vmdk your-image.raw
Converting a Hyper-V image:
qemu-img convert -f vpc -O raw your-image.vhd your-image.raw
The qemu-img tool is available on most Linux distributions through the package manager (e.g., apt install qemu-utils on Ubuntu). On Windows, you can install it through QEMU for Windows or use the Windows Subsystem for Linux.
Once converted, upload the raw image using SFTP or the API upload tools, and you can boot a Go2Cloud server directly from your migrated disk.