qubes-doc/Glossary.md

57 lines
3.9 KiB
Markdown
Raw Normal View History

2014-08-30 10:43:42 +00:00
---
2015-04-10 20:17:45 +00:00
layout: doc
2014-08-30 10:43:42 +00:00
title: Glossary
2015-04-10 20:17:45 +00:00
permalink: /doc/Glossary/
redirect_from: /wiki/Glossary/
2014-08-30 10:43:42 +00:00
---
Glossary of Qubes Terminology
=============================
2015-05-31 10:34:05 +00:00
**Domain**
2014-08-30 10:43:42 +00:00
A **virtual machine (VM)**, i.e., a software implementation of a machine (for example, a computer) that executes programs like a physical machine.
2015-05-31 10:34:05 +00:00
**Dom0**
2014-08-30 10:43:42 +00:00
Domain Zero. Also known as the **host** domain, dom0 is the initial domain started by the Xen hypervisor on boot. Dom0 runs the Xen management toolstack and has special privileges relative to other domains, such as direct access to most hardware.
2015-05-31 10:34:05 +00:00
**DomU**
2014-08-30 10:43:42 +00:00
Unprivileged Domain. Also known as **guest** domains, domUs are the counterparts to dom0. All domains except dom0 are domUs. By default, most domUs lack direct hardware access.
2015-05-31 10:34:05 +00:00
**AppVM**
2014-08-30 10:43:42 +00:00
Application Virtual Machine. Any VM which depends on a TemplateVM for its root filesystem. In contrast to TemplateVMs, AppVMs are intended for running software applications.
2015-05-31 10:34:05 +00:00
**TemplateVM**
2014-08-30 10:43:42 +00:00
Template Virtual Machine. Any standalone VM which supplies its root filesystem to other VMs, known as AppVMs. In contrast to AppVMs, TemplateVMs are intended for installing and updating software applications.
2015-05-31 10:34:05 +00:00
**Standalone(VM)**
2014-08-30 10:43:42 +00:00
Standalone (Virtual Machine). In general terms, a VM is described as **standalone** if and only if it does not depend on any other VM for its root filesystem. (In other words, a VM is standalone if and only if it is not an AppVM.) More specifically, a **StandaloneVM** is a type of VM in Qubes which is created by cloning a TemplateVM. Unlike TemplateVMs, however, StandaloneVMs cannot supply their root filesystems to other VMs. (Therefore, while a TemplateVM is a standalone VM, it is not a StandaloneVM.)
2015-05-31 10:34:05 +00:00
**NetVM**
2014-08-30 10:43:42 +00:00
Network Virtual Machine. A type of VM which connects directly to a network and provides access to that network to other VMs which connect to the NetVM. A NetVM called `netvm` is created by default in most Qubes installations.
2015-05-31 10:34:05 +00:00
**ProxyVM**
2014-08-30 10:43:42 +00:00
Proxy Virtual Machine. A type of VM which proxies network access for other VMs. Typically, a ProxyVM sits between a NetVM and a domU which requires network access.
2015-05-31 10:34:05 +00:00
**FirewallVM**
2014-08-30 10:43:42 +00:00
Firewall Virtual Machine. A type of ProxyVM which is used to enforce network-level policies (a.k.a. "firewall rules"). A FirewallVM called `firewallvm` is created by default in most Qubes installations.
2015-05-31 10:34:05 +00:00
**DispVM**
2014-08-30 10:43:42 +00:00
Disposable Virtual Machine. A temporary AppVM which can quickly be created, used, and destroyed.
2015-05-31 10:34:05 +00:00
**PV**
2014-08-30 10:43:42 +00:00
Paravirtualization. An efficient and lightweight virtualization technique originally introduced by the Xen Project and later adopted by other virtualization platforms. Unlike HVMs, paravirtualized VMs do not require virtualization extensions from the host CPU. However, paravirtualized VMs require a PV-enabled kernel and PV drivers, so the guests are aware of the hypervisor and can run efficiently without emulation or virtual emulated hardware.
2015-05-31 10:34:05 +00:00
**HVM**
2014-08-30 10:43:42 +00:00
Hardware Virtual Machine. Any fully virtualized, or hardware-assisted, VM utilizing the virtualization extensions of the host CPU. Although HVMs are typically slower than paravirtualized VMs due to the required emulation, HVMs allow the user to create domains based on any operating system.
2015-05-31 10:34:05 +00:00
**StandaloneHVM**
2014-08-30 10:43:42 +00:00
Any HVM which is standalone (i.e., does not depend on any other VM for its root filesystem). In Qubes, StandaloneHVMs are referred to simply as **HVMs**.
2015-05-31 10:34:05 +00:00
**TemplateHVM**
2014-08-30 10:43:42 +00:00
Any HVM which functions as a TemplateVM by supplying its root filesystem to other VMs. In Qubes, TemplateHVMs are referred to as **HVM templates**.
2015-05-31 10:34:05 +00:00
**PVH**
2014-08-30 10:43:42 +00:00
PV on HVM. To boost performance, fully virtualized HVM guests can use special paravirtual device drivers (PVHVM or PV-on-HVM drivers). These drivers are optimized PV drivers for HVM environments and bypass the emulation for disk and network IO, thus providing PV like (or better) performance on HVM systems. This allows for optimal performance on guest operating systems such as Windows.