博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【云计算】qcow2虚拟磁盘映像转化为vmdk
阅读量:6936 次
发布时间:2019-06-27

本文共 650 字,大约阅读时间需要 2 分钟。

 

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.

 

参考资料:

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

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

 

转载地址:http://ygpjl.baihongyu.com/

你可能感兴趣的文章
第一次上班吃便当
查看>>
jquery返回顶部-ie6配合css表达式。
查看>>
sqlachemy 使用实例
查看>>
Mac OS下编写对拍程序
查看>>
简单工厂模式 SimpleFactory
查看>>
ipv6导致的域名解析慢,nslookup,lvs,hosts.conf
查看>>
HDU——1267 下沙的沙子有几粒?
查看>>
pandas使用lambda判断元素是否为空或者None
查看>>
MapReduce Shuffle优化方向
查看>>
将博客搬至CSDN
查看>>
xcode快捷键
查看>>
MyBatis
查看>>
仿射变换
查看>>
iOS应用架构谈part3 网络层设计方案
查看>>
react组件生命周期
查看>>
IOS开发之自定义UITabBarController
查看>>
Android 混合式开发AppCan介绍
查看>>
悟透JavaScript(理解JS面向对象的好文章)
查看>>
spring gateway 截取response 长度缺失
查看>>
APK安装过程及原理详解(转)
查看>>