Difference between revisions of "VM Feature Identification"

From Xen
(PV-type:)
(HVM-type:)
Line 10: Line 10:
 
<pre>
 
<pre>
 
[ 0.000000] Hypervisor detected: Xen HVM
 
[ 0.000000] Hypervisor detected: Xen HVM
  +
</pre>
  +
and:
  +
<pre>
  +
[ 0.000000] Booting paravirtualized kernel on Xen HVM
 
</pre>
 
</pre>
   

Revision as of 16:49, 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

The output of the dmesg command contains many useful bits of information about the processor mode:

HVM-type:

If your VM is either HVM or PVHVM, look for:

[    0.000000] Hypervisor detected: Xen HVM

and:

[    0.000000] Booting paravirtualized kernel on Xen HVM

PV-type:

If your VM is PV or PVH, look for:

[    0.000000] Booting paravirtualized kernel on Xen

This message indicates that PV timers are in use:

[    0.000000] Xen: using vcpuop timer interface

If PV network drivers are in use, you might see:

[    0.432488] Initialising Xen virtual ethernet driver.

REFERENCES