zoukankan      html  css  js  c++  java
  • convert vmdk to vdi

    Home > virtualization > How To Convert VMWare Image (.vmdk) to VirtualBox Image (.vdi)

    How To Convert VMWare Image (.vmdk) to VirtualBox Image (.vdi)

    If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

    I’ve found more and more people are switching to Virtualbox these days and I keep running into the same question.  ”How can I convert my VMware images to Virtualbox images?”  Well, breath easy because it is possible and not very difficult!

    There are two methods that I am aware of that will allow you to use your VMware images on Virtualbox.  The first method I’ll outline uses the graphical Virtualbox interface and the second uses the command line. Each method should be equally as stable, it simple depends on your preference.

    Method 1

    Start Virtualbox
    Inside the Virtualbox Menu click: File > Virtual Media Manager
    Click on the “Add” button.
    Locate and select the VMware .vmdk file you’d like to convert.
    Click Open.
    Verify your disk image has been added to the list of images and that the virtual and actual sizes appear accurate.
    Click OK
    Create a new virtual machine profile, selecting your imported image for the storage.
    Boot your new virtual machine.

    Method 2
    To use the second method we’ll need an addition command-line tool called qemu.

    sudo aptitude install qemu

    You’ll new be able to convert a .vmdk (VMware image) to a .bin format, which can then be converted to a Virtualbox native .vdi format.

    qemu-img convert /path/to/original.vmdk converted.bin

    You’ll then need to use the VBoxManage utility that comes with Virtualbox to convert the .bin to a native .vdi format:

    VBoxManage convertdd converted.bin converted.vdi

    You can now create your new Virtualbox machine profile, using this new .vdi file as your disk image.

    Two methods for converting VMware images to Virtualbox images.  Are there any other methods that you can suggest, or have you had better experience with one or the other?  Let us know!

    1. Kragil
      March 22nd, 2009 at 08:41 | #1
  • 相关阅读:
    C++基于范围的for循环性能测试(针对std::vector)
    C++ 中std::function 、std::bind的使用和lambda的使用
    C++ auto 关键字的使用
    C++内存管理解析
    c++类内存分布解析
    Windows上编译GRPC
    在从1到n的正数中1出现的次数
    POJ 1009 解题报告
    Cheat Engine 笔记
    Cheat Engine 教程 Step 9
  • 原文地址:https://www.cnblogs.com/lexus/p/2346295.html
Copyright © 2011-2022 走看看