zoukankan      html  css  js  c++  java
  • 【云计算】qcow2虚拟磁盘映像转化为vmdk

    Software

    • QEMU emulator version 1.7.0

    Introduction

    Since we use VmWare in my company, I started to play with it myself.  Being slightly lazy I wanted to reuse some of my KVM images and run them directly in Vmware. Fortunately the process is dead easy.

    # qemu-img convert -f qcow2 file.qcow2 -O vmdk file.vmdk
    

    The same with the new QCOW format, QED:

    # qemu-img convert -f qed file.qed -O vmdk file.vmdk
    

    And to convert a QCOW2 image to the new QED format:

    # qemu-img convert -f qcow2 file.qcow2 -O qed file.qed
    

    That's all folks. Marcin

    参考资料:

    http://sdnhub.cn/index.php/convert-qcow2-to-vmdk/

    https://ezunix.org/index.php?title=Convert_qcow_images_to_VmWare_vmdk

  • 相关阅读:
    ARM IIC接口
    ARM硬件问题转载
    自动排版
    书签
    ARM硬件问题转载
    ATPCS规则1
    开发硬件所需的知识
    今天很崩溃呀
    回顾一下
    ARM汇编条件码
  • 原文地址:https://www.cnblogs.com/junneyang/p/5213706.html
Copyright © 2011-2022 走看看