Convert Amazon AMI to VMware image

6,490

If you still have access to the instance, I believe the simplest way would be using "dd" to copy it off to a raw file (possibly just directly piping over SSH to the destination system like in ssh your.ec2-syst.em 'dd if=/dev/sdh bs=1M | gzip' | gunzip | dd of=/tmp/ec2-image.raw) and then using something like qemu-img to convert the raw image to a VMDK file.

Share:
6,490

Related videos on Youtube

Tek Mun
Author by

Tek Mun

Updated on September 18, 2022

Comments

  • Tek Mun
    Tek Mun almost 2 years

    How can I convert an amazon ami image to a vmware image I can run locally in vmware player?

  • Tom O'Connor
    Tom O'Connor over 12 years
    Yep. This is the only way to do it.
  • Tek Mun
    Tek Mun over 12 years
    Any recommended articles, blogs that shows how to use qemu-img to create VMDK file that runs in VMware player?