0

I want to migrate my Windows VM from VMware player to KVM. All documents I found deal with disk images, however my current VM is installed on real NTFS filesystem, located on separate SATA drive.

Is it possible to configure KVM virtual machine with Windows XP guest, located on physical drive?

qrdl
  • 101
  • 1

2 Answers2

2

Use a P2V solution like virt-p2v, found here: http://libguestfs.org/virt-v2v/

There are many others and that's just an example. While technically it's "virtual", the P2V process will create a disk image that's usable with KVM.

Nathan C
  • 15,059
  • 4
  • 43
  • 62
  • I'd prefer to keep my VM on physical disk rather then virtual, although I would use your solution as a last resort. – qrdl Jun 13 '13 at 15:39
2

Shouldn't be a problem - just point the hypervisor to the disk instead of an image. You might want to start with setting the disks up as IDE and using mergeide.reg (can be found online) and switching to virtio later on.

Images are normally used because they are so much easier to manage, especially when there are lots of VMs to deal with.

dyasny
  • 18,802
  • 6
  • 49
  • 64