{% extends "stasy-base-1.html" %} {% block title %}{{ _("CPU flags") }}{% end block %} {% block body %}
{% if lang == "de" %}

Diese Seite untersucht CPUs und ihre Funktionalitäten. Anhand dieser Graphen können die Entwickler einige Entscheidungen über die Betriebssystemkonfiguration treffen.

{% else %}

On this page we will examine which CPUs provide a specific feature. These charts will help the IPFire developers to make decisions about the operating system configuration.

{% end %}

{{ _("CPUs that support 64 bits") }}

{% if lang == "de" %}

Wieviele Prozessoren unterstützen die 64-Bit-Architektur?

{% else %}

How many CPUs support the 64-bit architecture?

{% end %} {{ modules.StasyTable(cpus_lm, sortby="percentage") }}

{{ _("CPUs with PAE") }}

{% if lang == "de" %}

Diese Grafik zeigt uns wieviele Prozessoren das PAE-Flag unterstützen.

{% else %}

This chart shows us which CPUs have got the PAE flag.

{% end %} {{ modules.StasyTable(cpus_pae, sortby="percentage") }}

{{ _("CPUs that support virtualization") }}

{% if lang == "de" %}

Für zukünftige Planungen ist es nötig zu wissen, ob genug Hardware mit Virtualisierungsunterstützung vorhanden ist (Intels VT-x and AMD-V).

{% else %}

For future planning it is important to know if there is enough hardware support for virtualization like VT-x and AMD-V.

{% end %} {{ modules.StasyTable(cpus_virt, sortby="percentage") }}
{% end block %}