Difference between revisions of "VM Feature Identification"

From Xen
(Created page with "When you control your own hypervisor, you are aware of the features you are using, since you have configured the system and the VMs. However, if you are using a service provider…")
 
Line 1: Line 1:
 
When you control your own hypervisor, you are aware of the features you are using, since you have configured the system and the VMs. However, if you are using a service provider for your hosting or cloud, you need to do some detective work to determine the hypervisor mode and features employed.
 
When you control your own hypervisor, you are aware of the features you are using, since you have configured the system and the VMs. However, if you are using a service provider for your hosting or cloud, you need to do some detective work to determine the hypervisor mode and features employed.
   
=== REFERENCES ===
+
== MODE DETECTION ==
  +
  +
From dmesg:
  +
  +
<pre>
  +
[ 0.000000] Hypervisor detected: Xen HVM
  +
</pre>
  +
  +
Indicates that the VM is either HVM or PVHVM.
  +
  +
== REFERENCES ==
 
* A [http://www.brendangregg.com/blog/2014-05-09/xen-feature-detection.html truly great article] by Brendan Gregg
 
* A [http://www.brendangregg.com/blog/2014-05-09/xen-feature-detection.html truly great article] by Brendan Gregg

Revision as of 16:28, 13 October 2014

When you control your own hypervisor, you are aware of the features you are using, since you have configured the system and the VMs. However, if you are using a service provider for your hosting or cloud, you need to do some detective work to determine the hypervisor mode and features employed.

MODE DETECTION

From dmesg:

[    0.000000] Hypervisor detected: Xen HVM

Indicates that the VM is either HVM or PVHVM.

REFERENCES