{% extends "../base.html" %} {% block title %}{{ _("Virtualization") }}{% end block %} {% block body %} {% if virtual %}

IPFire is running very well in a virtual environment.

See this chart to get a clue about how many machines are running virtually.

{{ _("Virtualised systems") }}
{{ "%.2f" % (virtual * 100) }}%
{% end %}

{{ _("Hypervisors") }}

This is a list of all hypervisor vendors that IPFire is running on.

{% for name, percentage in hypervisors %}
{% if name == "unknown" %} {{ _("Unknown") }} {% elif name == "VMWare" %} VMware {% else %} {{ name }} {% end %}
{{ "%.2f" % (percentage * 100) }}%
{% end %}
{% end block %}