Differences between revisions 2 and 3
Revision 2 as of 2010-12-24 07:49:21
Size: 369
Editor: PieterSmit
Comment:
Revision 3 as of 2011-05-31 07:38:18
Size: 746
Editor: PieterSmit
Comment: Add convert from Virtualbox to KVM
Deletions are marked like this. Additions are marked like this.
Line 10: Line 10:

== Convert from Virtualbox(Oracle) to KVM(RedHat) ==
 1. Convert the VirtualBox VDI file into a RAW image.
   * $ VBoxManage clonehd --format RAW MyTestVM.vdi MyTestVM.raw
 2. Convert the RAW image into a QCOW file.
   * $ qemu-img convert -f raw MyTestVM.raw -O qcow2 MyTestVM.img
 3. Voila. Go into virt-manager, create the machine, and use your newly created image.

Virtualization on Linux

  • Main goal is to run windows instance on Linux.
  • Two main options: KVM and VBox(Oracle)

Convert from Virtualbox(Oracle) to KVM(RedHat)

  1. Convert the VirtualBox VDI file into a RAW image.

    • $ VBoxManage clonehd --format RAW MyTestVM.vdi MyTestVM.raw
  2. Convert the RAW image into a QCOW file.
    • $ qemu-img convert -f raw MyTestVM.raw -O qcow2 MyTestVM.img
  3. Voila. Go into virt-manager, create the machine, and use your newly created image.

...


CategoryLinux

linux/Virtualization (last edited 2017-11-10 22:41:35 by PieterSmit)