搜索泥称 发表于 2015-10-10 09:43:14

Xen vs. KVM

Xen vs. KVM
  http://www.peakscale.com/archives/gridvm/xen-vs-kvm/
Dec 20th, 2006 @ 10:15 pm CST
  The news of KVM’s inclusion in the Linux kernelhas me looking at KVM.
  How the virtualization layer is implemented has important ramifications, and KVM is much different from Xen.
  Xen itself sits directly on the hardware and treats even your old OS as a guest VM — for Xen, the Linux patches are necessary to make Linux aguest VM on the hypervisor.It implements a model known as paravirtualization that provides a lot of performance improvements over other recent x86 virtualization techniques such as VMware’s.This modelincludes a service VM that does privileged I/O work on behalf of the guests. (In a following entryI discuss some performance and efficiency issues, the larger story is not so simple as “paravirtualization makes everything very fast”)
  Xen can also support unmodified guest VMs if you are using either a VT capable Intel processor or an SVM capable AMD processor.
  KVM is a patch to the Linux kernel that is more like VServer, Solaris containers,or microkernels , where the OS still sits directly on thehardware.Some aspects of the current KVM release (mostly pulled from their FAQ):

[*]KVM guest OSs appear as a process and can be managed with top, kill, etc.
[*]KVM requires either a VT capable Intel processor or an SVM capable AMD processor (which is a currently a big limitation for grid providers but this will become less and less of an issue as older clusters are phased out).
[*]Uses QEMU for guest instantiation, but is not an emulator itself
[*]Runs Windows 32bit already (with no apci)
[*]I have yet to figure out if it relies on these kernel enhancements for OS level virtualization
[*]The current implementation should probably be seen as a preview, Fraser Campbell reportsthat it was“decidedly slow” when he tried it.
  : Some argue that microkernels and Xen have a lot in common.
  
页: [1]
查看完整版本: Xen vs. KVM