Book Image

OpenStack Cloud Computing Cookbook

By : Cody Bunch
Book Image

OpenStack Cloud Computing Cookbook

By: Cody Bunch

Overview of this book

Table of Contents (19 chapters)
OpenStack Cloud Computing Cookbook Third Edition
Credits
Foreword
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Migrating a VMware image


We can migrate a VMware based image, vmdk, to other disk image formats. This can be achieved using an image conversion utility. This same utility can be used to verify that the conversion worked properly. Once the image has been converted, it can be uploaded to OpenStack Image Service.

Getting ready

To begin with, ensure you are logged in to our Ubuntu client where we will be doing the image conversion. Make sure you have qemu-util installed; if not, you may install it using the following:

sudo apt-get install qemu-utils

How to do it...

Carry out the following steps to convert a VMDK image to the QCOW2 format:

  1. Verify the image using the following command:

    qemu-img info custom-iso-1415990568-disk1.vmdk 
    
  2. You will get the following output:

    image: custom-iso-1415990568-disk1.vmdk
    file format: vmdk
    virtual size: 39G (41943040000 bytes)
    disk size: 2.7G
    cluster_size: 65536
    Format specific information:
        cid: 2481477841
        parent cid: 4294967295
        create type: monolithicSparse...