qubes-doc/hcl.html

158 lines
4.9 KiB
HTML
Raw Normal View History

2015-03-09 20:50:38 +00:00
---
2015-03-29 18:07:35 +00:00
layout: null
2015-03-09 20:50:38 +00:00
permalink: "/hcl/"
title: "Hardware Compatibility List"
model: all
---
2015-03-29 18:07:35 +00:00
<!DOCTYPE html>
<html>
2015-03-09 20:50:38 +00:00
2015-03-29 18:07:35 +00:00
{% include head.html %}
<body>
{% include header.html %}
<h2 align="center">{{ page.title }}</h2>
2015-05-09 12:59:07 +00:00
<div align="center">Information about this list and how to contribute can be found <a class='ext-link' href='/doc/HCL/'>here</a>.</div>
2015-03-29 18:07:35 +00:00
<table align="center">
<tr align='center'>
<th colspan=2 align='center'><b>Legend</b></th>
2015-03-28 18:58:24 +00:00
</tr>
<tr>
<th align='center'><b>Marks and background colour</b></th>
</tr>
<tr>
<td align='center' style="background: green">yes</td>
<td>Working correctly.</td>
</tr>
<tr>
<td align='center' style="background: red">no</td>
<td>Does not work or is not present.</td>
</tr>
<tr>
<td align='center' style="background: yellow">partial</td>
<td>Indicates that some kind of tweaking is needed, see remarks for further information.</td>
</tr>
<tr>
<td align='center' style="background: blue"></td>
<td>A blank cell indicates that we lack information about it.</td>
</tr>
<tr>
<th align='center'><b>Columns</b></th>
</tr>
<tr>
<td align='center'>Model</td>
<td>Manufacturer and Devicename <br>(Socket/CPU, Chipset/Southbridge, Graphics)</td>
</tr>
<tr>
<td align='center'>BIOS</td>
<td>Reported BIOS version</td>
</tr>
<tr>
<td align='center'><a class='ext-link' href='https://en.wikipedia.org/wiki/Hardware_virtual_machine'>HVM</a></td>
2015-05-09 12:59:07 +00:00
<td><a class='ext-link' href='https://en.wikipedia.org/wiki/Intel_VT-x#Intel-VT-x'>Intel VT-x</a> or <a class='ext-link' href='https://en.wikipedia.org/wiki/AMD-V#AMD_virtualization_.28AMD-V.29'>AMD-v</a> technology (required for running HVM domains, such as <a class='ext-link' href='/doc/WindowsAppVms/'>Windows-based AppVMs</a>) </td>
</tr>
<tr>
<td align='center'><a class='ext-link' href='https://en.wikipedia.org/wiki/IOMMU'>IOMMU</a></td>
<td>Intel VT-d or AMD IOMMU technology (required for effective isolation of network VMs and <a class='ext-link' href='http://wiki.xen.org/wiki/Xen_PCI_Passthrough'>PCI passthrough</a>) </td>
</tr>
<tr>
<td align='center'><a class='ext-link' href='https://en.wikipedia.org/wiki/Trusted_Platform_Module'>TPM</a></td>
2015-05-09 12:59:07 +00:00
<td>TPM with proper BIOS support (required for <a class='ext-link' href='/doc/AntiEvilMaid/'>Anti Evil Maid</a>) </td>
</tr>
<tr>
<td align='center'>Qubes</td>
<td>Reported Qubes version (R=Release, rc=release candidate, B=Beta, i.e.: R1, R2B1, R2rc1)</td>
</tr>
<tr>
<td align='center'><a class='ext-link' href='https://en.wikipedia.org/wiki/Linux_kernel#Maintenance'>Kernel</a></td>
<td>Reported <a class='ext-link' href='https://en.wikipedia.org/wiki/Dom0'>dom0</a> kernel version (numbers in uname -r), can be selected during installation and boot in Troubleshooting menu.</td>
</tr>
<tr>
<td align='center'>Remark</td>
<td>Further information field. Qubes, Kernel and this field is coloured in conjunction to reflect general machine compatibility.</td>
</tr>
<tr>
<td align='center'>Credit</td>
<td>Name linked to report in <a class='ext-link' href='https://groups.google.com/forum/#!forum/qubes-users'>qubes-users.</td>
</tr>
</table>
<br>
2015-03-29 18:07:35 +00:00
<table align="center" style="width: 95%">
<td colspan="10" align="center"><br><h2>Laptop devices</h2></td>
<tr>
<th style="width=23%">Model</th>
2015-03-29 18:07:35 +00:00
<th style="width=42px">BIOS</th>
<th style="width=32px">HVM</th>
<th style="width=32px">IOMMU</th>
<th style="width=32px">TPM</th>
<th style="width=42px">Qubes</th>
<th style="width=42px">Xen</th>
<th style="width=42px">Kernel</th>
<th>Remark</th>
<th style="width=20%">Credit</th>
</tr>
2015-03-28 18:58:24 +00:00
{% for device in site.hcl %}{% if device.type == 'laptop' %}
2015-03-09 20:50:38 +00:00
{% include hcl-device.html %}
2015-03-28 18:58:24 +00:00
{% endif %}{% endfor %}
2015-03-09 20:50:38 +00:00
2015-03-29 18:07:35 +00:00
<td colspan="10" align="center"><br><h2>Desktop, Workstation and Server</h2></td>
<tr>
<th style="width=23%">Model</th>
2015-03-29 18:07:35 +00:00
<th style="width=42px">BIOS</th>
<th style="width=32px">HVM</th>
<th style="width=32px">IOMMU</th>
<th style="width=32px">TPM</th>
<th style="width=42px">Qubes</th>
<th style="width=42px">Xen</th>
<th style="width=42px">Kernel</th>
<th>Remark</th>
<th style="width=20%">Credit</th>
</tr>
2015-03-28 18:58:24 +00:00
{% for device in site.hcl %}{% if device.type == 'desktop' or device.type == 'workstation' or device.type == 'server' %}
{% include hcl-device.html %}
{% endif %}{% endfor %}
2015-03-09 20:50:38 +00:00
2015-03-29 18:07:35 +00:00
<td colspan="10" align="center"><br><h2>Motherboards</h2></td>
<tr>
<th style="width=23%">Model</th>
2015-03-29 18:07:35 +00:00
<th style="width=42px">BIOS</th>
<th style="width=32px">HVM</th>
<th style="width=32px">IOMMU</th>
<th style="width=32px">TPM</th>
<th style="width=42px">Qubes</th>
<th style="width=42px">Xen</th>
<th style="width=42px">Kernel</th>
<th>Remark</th>
<th style="width=20%">Credit</th>
</tr>
2015-03-28 18:58:24 +00:00
{% for device in site.hcl %}{% if device.type == 'motherboard' %}
{% include hcl-device.html %}
{% endif %}{% endfor %}
</table>
2015-03-29 18:07:35 +00:00
{% include footer.html %}
</body>
</html>