# Hypervisor

> Mediated Wiki article. Canonical URL: https://mediated.wiki/source/Hypervisor
> Markdown URL: https://mediated.wiki/source/Hypervisor.md
> Source: https://en.wikipedia.org/wiki/Hypervisor
> Source revision: 1351728548
> License: Creative Commons Attribution-ShareAlike 4.0 International (https://creativecommons.org/licenses/by-sa/4.0/)

Piece of software or hardware that creates and runs virtual machines

A **hypervisor**, also known as a **virtual machine monitor** (**VMM**), is a type of computer [software](/source/Software), [firmware](/source/Firmware) or [hardware](/source/Computer_hardware) that creates and runs [virtual machines](/source/Virtual_machine). A computer on which a hypervisor runs one or more virtual machines is called a *host machine* or *virtualization server*, and each virtual machine is called a *guest machine*. The hypervisor presents the guest operating systems with a [virtual operating platform](/source/Platform_virtualization) and manages the execution of the guest operating systems. Unlike an [emulator](/source/Emulator), the guest executes most instructions on the native hardware.[1] Multiple instances of a variety of operating systems may share the virtualized hardware resources: for example, [Linux](/source/Linux), [Windows](/source/Microsoft_Windows), and [macOS](/source/MacOS) instances can all run on a single physical [x86](/source/X86) machine. This contrasts with [operating system-level virtualization](/source/Operating_system-level_virtualization), where all instances (usually called *[containers](/source/Containerization_(computing))*) must share a single kernel, though the guest operating systems can differ in [user space](/source/User_space), such as different [Linux distributions](/source/Linux_distribution) with the same kernel.

The term *hypervisor* is a variant of *supervisor*, a traditional term for the [kernel](/source/Kernel_(operating_system)) of an [operating system](/source/Operating_system): the hypervisor is the supervisor of the supervisors,[2] with *[hyper-](https://en.wiktionary.org/wiki/hyper-)* used as a stronger variant of *[super-](https://en.wiktionary.org/wiki/super-)*.[a] The term dates to circa 1970;[3] IBM coined it for software that ran [OS/360](/source/OS%2F360) and the 7090 emulator concurrently on the [360/65](/source/IBM_System%2F360_Model_65)[4] and later used it for the DIAG handler of CP-67. In the earlier [CP/CMS](/source/CP%2FCMS) (1967) system, the term *Control Program* was used instead.

Some literature, especially in [microkernel](/source/Microkernel) contexts, makes a distinction between *hypervisor* and *virtual machine monitor* (*VMM*). There, both components form the overall *virtualization stack* of a certain system. *Hypervisor* refers to [kernel-space](/source/User_space_and_kernel_space) functionality and VMM to [user-space](/source/User_space_and_kernel_space) functionality. Specifically in these contexts, a *hypervisor* is a microkernel implementing virtualization infrastructure that must run in kernel-space for technical reasons, such as [Intel VMX](/source/X86_virtualization). Microkernels implementing virtualization mechanisms are also referred to as *microhypervisor*.[5][6] Applying this terminology to [Linux](/source/Linux), [KVM](/source/Kernel-based_Virtual_Machine) is a *hypervisor* and [QEMU](/source/QEMU) or Cloud Hypervisor are VMMs utilizing KVM as hypervisor.[7]

## Classification

Type-1 and type-2 hypervisors

In his 1973 thesis *Architectural Principles for Virtual Computer Systems*, [Robert P. Goldberg](/source/Robert_P._Goldberg) classified two types of hypervisor:[1]

**Type-1, native or bare-metal hypervisors**
- These hypervisors run directly on the host's hardware to control the hardware and to manage guest operating systems. For this reason, they are sometimes called [bare-metal](/source/Bare_machine) hypervisors. The first hypervisors, which IBM developed in the 1960s, were native hypervisors.[8] These included the test software [SIMMON](/source/SIMMON) and the [CP/CMS](/source/CP%2FCMS) operating system, the predecessor of IBM's [VM family](/source/VM_(operating_system)) of [virtual machine](/source/Virtual_machine) [operating systems](/source/Operating_systems). Examples of Type-1 hypervisor include [Hyper-V](/source/Hyper-V), [Xen](/source/Xen) and [VMware ESXi](/source/VMware_ESXi).

**Type-2 or hosted hypervisors**
- These hypervisors run on a conventional operating system (OS) just as other computer programs do. A virtual machine monitor runs as a [process](/source/Computer_process) on the host, such as [VirtualBox](/source/VirtualBox). Type-2 hypervisors abstract guest operating systems from the host operating system, effectively creating an isolated system that can be interacted with by the host. Examples of Type-2 hypervisor include [VirtualBox](/source/VirtualBox) and [VMware Workstation](/source/VMware_Workstation).

The distinction between these two types is not always clear. For instance, [KVM](/source/Kernel-based_Virtual_Machine) and [bhyve](/source/Bhyve) are [kernel modules](/source/Kernel_module)[9] that effectively convert the host operating system to a type-1 hypervisor.[10]

## Mainframe origins

The first hypervisors providing [full virtualization](/source/Full_virtualization) were the test tool [SIMMON](/source/SIMMON) and the one-off [IBM CP-40](/source/IBM_CP-40) research system, which began production use in January 1967 and became the first version of the IBM [CP/CMS](/source/CP%2FCMS) operating system. CP-40 ran on a [S/360-40](/source/System%2F360) modified at the [Cambridge Scientific Center](/source/Cambridge_Scientific_Center) to support [dynamic address translation](/source/Dynamic_address_translation), a feature that enabled virtualization. Prior to this time, computer hardware had only been virtualized to the extent to allow multiple user applications to run concurrently, such as in [CTSS](/source/Compatible_Time-Sharing_System) and [IBM M44/44X](/source/IBM_M44%2F44X). With CP-40, the hardware's *supervisor state* was virtualized as well, allowing multiple operating systems to run concurrently in separate [virtual machine](/source/Virtual_machine) contexts.

Programmers soon implemented CP-40 (as [CP-67](/source/CP-67)) for the [IBM System/360-67](/source/IBM_System%2F360-67), the first production computer system capable of full virtualization. IBM shipped this machine in 1966; it included [page-translation-table](/source/Page_translation_table) hardware for virtual memory and other techniques that allowed a full virtualization of all kernel tasks, including I/O and interrupt handling. (The "official" operating system, the ill-fated [TSS/360](/source/TSS%2F360), did not employ full virtualization.) Both CP-40 and CP-67 began production use in 1967. [CP/CMS](/source/CP%2FCMS) was available to IBM customers from 1968 to early 1970s, in source code form without support.

[CP/CMS](/source/CP%2FCMS) formed part of IBM's attempt to build robust [time-sharing](/source/Time-sharing) systems for its [mainframe](/source/Mainframe_computer) computers. By running multiple operating systems concurrently, the hypervisor increased system robustness and stability: Even if one operating system crashed, the others would continue working without interruption. Indeed, this even allowed [beta](/source/Development_stage#Beta) or experimental versions of operating systems‍—‌or even of new hardware[11]‍—‌to be deployed and debugged, without jeopardizing the stable main production system, and without requiring costly additional development systems.

IBM announced its [System/370](/source/System%2F370) series in 1970 without the [virtual memory](/source/Virtual_memory) feature needed for virtualization, but added it in the August 1972 Advanced Function announcement. Virtualization has been featured in all successor systems, such that all modern-day IBM mainframes, including the [zSeries](/source/ZSeries) line, retain backward compatibility with the 1960s-era IBM S/360 line. The 1972 announcement also included [VM/370](/source/VM_(operating_system)), a reimplementation of [CP/CMS](/source/CP%2FCMS) for the S/370. Unlike [CP/CMS](/source/CP%2FCMS), IBM provided support for this version (though it was still distributed in source code form for several releases). *VM* stands for *[Virtual Machine](/source/Virtual_Machine)*, emphasizing that all, not just some, of the hardware interfaces are virtualized. Both VM and CP/CMS enjoyed early acceptance and rapid development by universities, corporate users, and [time-sharing](/source/Time-sharing) vendors, as well as within IBM. Users played an active role in ongoing development, anticipating trends seen in modern [open source](/source/Open-source_model) projects. However, in a series of disputed and bitter battles[*[citation needed](https://en.wikipedia.org/wiki/Wikipedia:Citation_needed)*], time-sharing lost out to [batch processing](/source/Batch_processing) through IBM political infighting, and VM remained IBM's "other" mainframe operating system for decades, losing to [MVS](/source/MVS). It enjoyed a resurgence of popularity and support from 2000 as the [z/VM](/source/Z%2FVM) product, for example as the platform for [Linux on IBM Z](/source/Linux_on_IBM_Z).

As mentioned above, the VM control program includes a *hypervisor-call* handler that intercepts DIAG ("Diagnose", opcode x'83') instructions used within a virtual machine. This provides fast-path non-virtualized execution of file-system access and other operations (DIAG is a model-dependent privileged instruction, not used in normal programming, and thus is not virtualized. It is therefore available for use as a signal to the "host" operating system). When first implemented in [CP/CMS](/source/CP%2FCMS) release 3.1, this use of DIAG provided an operating system interface that was analogous to the [System/360](/source/System%2F360) [Supervisor Call instruction](/source/Supervisor_Call_instruction) (SVC), but that did not require altering or extending the system's virtualization of SVC.

In 1985 IBM introduced the [PR/SM](/source/PR%2FSM) hypervisor to manage [logical partitions](/source/Logical_partition_(virtual_computing_platform)) (LPAR).

## Operating system support

This section needs additional citations for verification. Please help improve this article by adding citations to reliable sources in this section. Unsourced material may be challenged and removed. Find sources: "Hypervisor" – news · newspapers · books · scholar · JSTOR (September 2021) (Learn how and when to remove this message)

Several factors led to a resurgence around 2005 in the use of [virtualization](/source/Platform_virtualization) technology among [Unix](/source/Unix), [Linux](/source/Linux), and other [Unix-like](/source/Unix-like) operating systems:[12]

- Expanding hardware capabilities, allowing each single machine to do more simultaneous work

- Efforts to control costs and to simplify management through consolidation of servers

- The need to control large [multiprocessor](/source/Multiprocessor) and [cluster](/source/Computer_cluster) installations, for example in [server farms](/source/Server_farm) and [render farms](/source/Render_farm)

- The improved security, reliability, and device independence possible from hypervisor architectures

- The ability to run complex, OS-dependent applications in different hardware or OS environments

- The ability to overprovision resources, fitting more applications onto a host

Major Unix vendors, including [HP](/source/Hewlett-Packard), [IBM](/source/IBM), [SGI](/source/Silicon_Graphics), and [Sun Microsystems](/source/Sun_Microsystems), have been selling virtualized hardware since before 2000. These have generally been large, expensive systems (in the multimillion-dollar range at the high end), although virtualization has also been available on some low- and mid-range systems, such as IBM [pSeries](/source/System_p) servers, HP [Superdome](/source/HP_Superdome) series machines, and Sun/Oracle [SPARC T series](/source/SPARC_T_series) CoolThreads servers.

IBM provides virtualization partition technology known as [logical partitioning](/source/LPAR) (LPAR) on [System/390](/source/System%2F390), [zSeries](/source/ZSeries), [pSeries](/source/PSeries) and [IBM AS/400](/source/IBM_AS%2F400) systems. For IBM's Power Systems, the POWER Hypervisor (PHYP) is a native (bare-metal) hypervisor in firmware and provides isolation between LPARs. Processor capacity is provided to LPARs in either a dedicated fashion or on an entitlement basis where unused capacity is harvested and can be re-allocated to busy workloads. Groups of LPARs can have their processor capacity managed as if they were in a "pool" - IBM refers to this capability as Multiple Shared-Processor Pools (MSPPs) and implements it in servers with the [POWER6](/source/POWER6) processor. LPAR and MSPP capacity allocations can be dynamically changed. Memory is allocated to each LPAR (at LPAR initiation or dynamically) and is address-controlled by the POWER Hypervisor. For real-mode addressing by operating systems ([AIX](/source/AIX), [Linux](/source/Linux), [IBM i](/source/IBM_i)), the [Power](/source/IBM_Power_microprocessors) processors ([POWER4](/source/POWER4) onwards) have designed virtualization capabilities where a hardware address-offset is evaluated with the OS address-offset to arrive at the physical memory address. Input/Output (I/O) adapters can be exclusively "owned" by LPARs or shared by LPARs through an appliance partition known as the Virtual I/O Server (VIOS). The Power Hypervisor provides for high levels of reliability, availability and serviceability (RAS) by facilitating hot add/replace of multiple parts (model dependent: processors, memory, I/O adapters, blowers, power units, disks, system controllers, etc.)

HPE provides [HP Integrity Virtual Machines](/source/HP_Integrity_Virtual_Machines) (Integrity VM) to host multiple operating systems on their [Itanium](/source/Itanium) powered Integrity systems. Itanium can run [HP-UX](/source/HP-UX), Linux, Windows and [OpenVMS](/source/OpenVMS), and these environments are also supported as virtual servers on HP's Integrity VM platform. The HP-UX operating system hosts the Integrity VM hypervisor layer that allows for multiple features of HP-UX to be taken advantage of and provides major differentiation between this platform and other commodity platforms - such as processor hotswap, memory hotswap, and dynamic kernel updates without system reboot. While it heavily leverages HP-UX, the Integrity VM hypervisor is really a hybrid that runs on bare-metal while guests are executing. Running normal HP-UX applications on an Integrity VM host is heavily discouraged,[*[by whom?](https://en.wikipedia.org/wiki/Wikipedia:Manual_of_Style/Words_to_watch#Unsupported_attributions)*] because Integrity VM implements its own memory management, scheduling and I/O policies that are tuned for virtual machines and are not as effective for normal applications. HPE also provides more rigid partitioning of their Integrity and HP9000 systems by way of VPAR and [nPar](/source/HP_nPar_(Hard_Partitioning)) technology, the former offering shared resource partitioning and the latter offering complete I/O and processing isolation. The flexibility of virtual server environment (VSE) has given way to its use more frequently in newer deployments.[*[citation needed](https://en.wikipedia.org/wiki/Wikipedia:Citation_needed)*]

Although [Solaris](/source/Solaris_(operating_system)) has always been the only guest domain OS officially supported by Sun/Oracle on their [Logical Domains](/source/Logical_Domains) hypervisor, as of late 2006[\[update\]](https://en.wikipedia.org/w/index.php?title=Hypervisor&action=edit), [Linux](/source/Linux) (Ubuntu and Gentoo), and [FreeBSD](/source/FreeBSD) have been ported to run on top of the hypervisor (and can all run simultaneously on the same processor, as fully virtualized independent guest OSes). Wind River "Carrier Grade Linux" also runs on Sun's Hypervisor.[13] Full virtualization on [SPARC](/source/SPARC) processors proved straightforward: since its inception in the mid-1980s Sun deliberately kept the SPARC architecture clean of artifacts that would have impeded virtualization. (Compare with virtualization on x86 processors below.)[14]

Similar trends have occurred with x86/x86-64 server platforms, where [open-source](/source/Open-source_model) projects such as [Xen](/source/Xen) have led virtualization efforts. These include hypervisors built on Linux and Solaris kernels as well as custom kernels. Since these technologies span from large systems down to desktops, they are described in the next section.

## x86 systems

Main article: [x86 virtualization](/source/X86_virtualization)

This section needs additional citations for verification. Please help improve this article by adding citations to reliable sources in this section. Unsourced material may be challenged and removed. Find sources: "Hypervisor" – news · newspapers · books · scholar · JSTOR (April 2023) (Learn how and when to remove this message)

[x86 virtualization](/source/X86_virtualization) was introduced in the 1990s, with its emulation being included in [Bochs](/source/Bochs).[15] Intel and AMD released their first x86 processors with hardware virtualisation in 2005 with [Intel VT-x](/source/Intel_VT-x) (code-named Vanderpool) and [AMD-V](/source/AMD-V) (code-named Pacifica).

An alternative approach requires modifying the guest operating system to make a [system call](/source/System_call) to the underlying hypervisor, rather than executing machine I/O instructions that the hypervisor simulates. This is called [paravirtualization](/source/Paravirtualization) in [Xen](/source/Xen), a "hypercall" in [Parallels Workstation](/source/Parallels_Workstation), and a "DIAGNOSE code" in IBM [VM](/source/VM_(operating_system)). Some microkernels, such as [Mach](/source/Mach_microkernel) and [L4](/source/L4_microkernel_family), are flexible enough to allow paravirtualization of guest operating systems.

## Embedded systems

[Embedded hypervisors](/source/Embedded_hypervisor), targeting [embedded systems](/source/Embedded_system) and certain [real-time operating system](/source/Real-time_operating_system) (RTOS) environments, are designed with different requirements when compared to desktop and enterprise systems, including robustness, security and [real-time](/source/Real-time_computing) capabilities. The resource-constrained nature of multiple embedded systems, especially battery-powered mobile systems, imposes a further requirement for small memory-size and low overhead. Finally, in contrast to the ubiquity of the x86 architecture in the PC world, the embedded world uses a wider variety of architectures and less standardized environments. Support for virtualization requires [memory protection](/source/Memory_protection) (in the form of a [memory management unit](/source/Memory_management_unit) or at least a memory protection unit) and a distinction between [user mode](/source/User_mode) and [privileged mode](/source/Privileged_mode), which rules out most [microcontrollers](/source/Microcontroller). This still leaves [x86](/source/X86), [MIPS](/source/MIPS_architecture), [ARM](/source/ARM_architecture) and [PowerPC](/source/PowerPC) as widely deployed architectures on medium- to high-end embedded systems.[16]

As manufacturers of embedded systems usually have the source code to their operating systems, they have less need for full virtualization in this space. Instead, the performance advantages of [paravirtualization](/source/Paravirtualization) make this usually the virtualization technology of choice. Nevertheless, ARM and MIPS have recently added full virtualization support as an IP option and has included it in their latest high-end processors and architecture versions, such as [ARM Cortex-A15 MPCore](/source/ARM_Cortex-A15_MPCore) and ARMv8 EL2.

Other differences between virtualization in server/desktop and embedded environments include requirements for efficient sharing of resources across virtual machines, high-bandwidth, low-latency inter-VM communication, a global view of scheduling and power management, and fine-grained control of information flows.[17]

## Security implications

Main article: [Hyperjacking](/source/Hyperjacking)

The use of hypervisor technology by [malware](/source/Malware) and [rootkits](/source/Rootkit) installing themselves as a hypervisor below the operating system, known as *[hyperjacking](/source/Hyperjacking)*, can make them more difficult to detect because the malware could intercept any operations of the operating system (such as someone entering a password) without the anti-malware software necessarily detecting it (since the malware runs below the entire operating system). Implementation of the concept has allegedly occurred in the [SubVirt](https://en.wikipedia.org/w/index.php?title=SubVirt&action=edit&redlink=1) laboratory rootkit (developed jointly by [Microsoft](/source/Microsoft) and [University of Michigan](/source/University_of_Michigan) researchers[18]) as well as in the [Blue Pill malware](/source/Blue_Pill_(software)) package. However, such assertions have been disputed by others who claim that it would be possible to detect the presence of a hypervisor-based rootkit.[19]

In 2009, researchers from Microsoft and [North Carolina State University](/source/North_Carolina_State_University) demonstrated a hypervisor-layer anti-rootkit called [Hooksafe](/source/Hooksafe) that can provide generic protection against kernel-mode [rootkits](/source/Rootkit).[20]

## See also

- [Comparison of platform virtualization software](/source/Comparison_of_platform_virtualization_software)

- [OS-level virtualization](/source/OS-level_virtualization)

- [Virtual memory](/source/Virtual_memory)

## Notes

1. **[^](#cite_ref-3)** *super-* is from Latin, meaning "above", while *hyper-* is from the [cognate](/source/Cognate) term in [Ancient Greek](/source/Ancient_Greek) ([ὑπέρ-](https://en.wiktionary.org/wiki/%E1%BD%91%CF%80%CE%AD%CF%81)), also meaning *above* or *over*.

## References

1. ^ [***a***](#cite_ref-goldberg1973_1-0) [***b***](#cite_ref-goldberg1973_1-1) Goldberg, Robert P. (1973). [*Architectural Principles for Virtual Computer Systems*](https://apps.dtic.mil/sti/pdfs/AD0772809.pdf) (PDF) (Technical report). Harvard University. ESD-TR-73-105.

1. **[^](#cite_ref-2)** Bernard Golden (2011). *Virtualization For Dummies*. p. [54](https://books.google.com/books?id=2ppZkdmpSlgC&pg=PA54).

1. **[^](#cite_ref-4)** ["How did the term "hypervisor" come into use?"](https://softwareengineering.stackexchange.com/questions/196405/how-did-the-term-hypervisor-come-into-use). *softwareengineering.stackexchange.com*. April 28, 2013.

1. **[^](#cite_ref-5)** Gary R. Allred (May 1971). [*System/370 integrated emulation under OS and DOS*](https://www.computer.org/csdl/proceedings/afips/1971/5077/00/50770163.pdf) (PDF). 1971 [Spring Joint Computer Conference](/source/Spring_Joint_Computer_Conference). Vol. 38. AFIPS Press. p. 164. [doi](/source/Doi_(identifier)):[10.1109/AFIPS.1971.58](https://doi.org/10.1109%2FAFIPS.1971.58). Retrieved June 12, 2022.

1. **[^](#cite_ref-6)** Steinberg, Udo; Kauer, Bernhard (2010). ["NOVA: A Microhypervisor-Based Secure Virtualization Architecture"](https://hypervisor.org/eurosys2010.pdf) (PDF). *Proceedings of the 2010 ACM European Conference on Computer Systems (EuroSys 2010)*. Paris, France. Retrieved August 27, 2024.

1. **[^](#cite_ref-7)** ["Hedron Microkernel"](https://github.com/cyberus-technology/hedron). *GitHub*. Cyberus Technology. Retrieved August 27, 2024.

1. **[^](#cite_ref-8)** ["Cloud Hypervisor"](https://github.com/cloud-hypervisor/cloud-hypervisor). *GitHub*. Cloud Hypervisor Project. Retrieved August 27, 2024.

1. **[^](#cite_ref-9)** Meier, Shannon (2008). ["IBM Systems Virtualization: Servers, Storage, and Software"](http://www.redbooks.ibm.com/redpapers/pdfs/redp4396.pdf) (PDF). pp. 2, 15, 20. Retrieved December 22, 2015.

1. **[^](#cite_ref-10)** Dexter, Michael. ["Hands-on bhyve"](http://callfortesting.org/bhyve/). *CallForTesting.org*. Retrieved September 24, 2013.

1. **[^](#cite_ref-IowaState_11-0)** Graziano, Charles (2011). [*A performance analysis of Xen and KVM hypervisors for hosting the Xen Worlds Project*](https://dr.lib.iastate.edu/handle/20.500.12876/26405) (MS thesis). Iowa State University. [doi](/source/Doi_(identifier)):[10.31274/etd-180810-2322](https://doi.org/10.31274%2Fetd-180810-2322). [hdl](/source/Hdl_(identifier)):[20.500.12876/26405](https://hdl.handle.net/20.500.12876%2F26405). Retrieved October 16, 2022.

1. **[^](#cite_ref-12)** See [History of CP/CMS](/source/History_of_CP%2FCMS) for virtual-hardware simulation in the development of the [System/370](/source/System%2F370)

1. **[^](#cite_ref-13)** Loftus, Jack (December 19, 2005). ["Xen virtualization quickly becoming open source 'killer app'"](http://searchdatacenter.techtarget.com/news/1153127/Xen-virtualization-quickly-becoming-open-source-killer-app). *TechTarget*. Retrieved October 26, 2015.

1. **[^](#cite_ref-14)** ["Wind River To Support Sun's Breakthrough UltraSPARC T1 Multithreaded Next-Generation Processor"](https://web.archive.org/web/20061110175456/http://www.windriver.com/news/press/pr.html?ID=3881). *Wind River Newsroom* (Press release). Alameda, California. November 1, 2006. Archived from [the original](http://www.windriver.com/news/press/pr.html?ID=3881) on November 10, 2006. Retrieved October 26, 2015.

1. **[^](#cite_ref-15)** Fritsch, Lothar; Husseiki, Rani; Alkassar, Ammar. [Complementary and Alternative Technologies to Trusted Computing (TC-Erg./-A.), Part 1, A study on behalf of the German Federal Office for Information Security (BSI)](https://web.archive.org/web/20200607211407/https://www.bsi.bund.de/SharedDocs/Downloads/EN/BSI/Publications/Studies/TC_ErgA/TC-ErgA_Part1.pdf?__blob=publicationFile) (PDF) (Report). Archived from [the original](https://www.bsi.bund.de/SharedDocs/Downloads/EN/BSI/Publications/Studies/TC_ErgA/TC-ErgA_Part1.pdf?__blob=publicationFile) (PDF) on June 7, 2020. Retrieved February 28, 2011.

1. **[^](#cite_ref-16)** ["Introduction to Bochs"](https://bochs.sourceforge.io/doc/docbook/user/introduction.html). *bochs.sourceforge.io*. Retrieved April 17, 2023.

1. **[^](#cite_ref-17)** Strobl, Marius (2013). [*Virtualization for Reliable Embedded Systems*](http://www.grin.com/e-book/233001/). Munich: GRIN Publishing GmbH. pp. 5–6. [ISBN](/source/ISBN_(identifier)) [978-3-656-49071-5](https://en.wikipedia.org/wiki/Special:BookSources/978-3-656-49071-5). Retrieved March 7, 2015.

1. **[^](#cite_ref-Hei08_18-0)** [Gernot Heiser](/source/Gernot_Heiser) (April 2008). ["The role of virtualization in embedded systems"](https://web.archive.org/web/20120321212358/https://ertos.nicta.com.au/publications/papers/Heiser_08.abstract). *Proc. 1st Workshop on Isolation and Integration in Embedded Systems (IIES'08)*. pp. 11–16. Archived from [the original](http://ertos.nicta.com.au/publications/papers/Heiser_08.abstract) on March 21, 2012. Retrieved April 8, 2009.

1. **[^](#cite_ref-19)** ["SubVirt: Implementing malware with virtual machines"](http://web.eecs.umich.edu/~pmchen/papers/king06.pdf) (PDF). [University of Michigan](/source/University_of_Michigan), [Microsoft](/source/Microsoft). April 3, 2006. Retrieved September 15, 2008.

1. **[^](#cite_ref-20)** ["Debunking Blue Pill myth"](https://web.archive.org/web/20100214173337/http://www.virtualization.info/2006/08/debunking-blue-pill-myth.html). Virtualization.info. August 11, 2006. Archived from [the original](http://www.virtualization.info/2006/08/debunking-blue-pill-myth.html) on February 14, 2010. Retrieved December 10, 2010.

1. **[^](#cite_ref-21)** Wang, Zhi; Jiang, Xuxian; Cui, Weidong; Ning, Peng (August 11, 2009). "Countering kernel rootkits with lightweight hook protection". [*Proceedings of the 16th ACM conference on Computer and communications security*](http://research.microsoft.com/en-us/um/people/wdcui/papers/hooksafe-ccs09.pdf) (PDF). CCS '09. Chicago, Illinois, USA: [ACM](/source/Association_for_Computing_Machinery). pp. 545–554. [CiteSeerX](/source/CiteSeerX_(identifier)) [10.1.1.147.9928](https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.147.9928). [doi](/source/Doi_(identifier)):[10.1145/1653662.1653728](https://doi.org/10.1145%2F1653662.1653728). [ISBN](/source/ISBN_(identifier)) [978-1-60558-894-0](https://en.wikipedia.org/wiki/Special:BookSources/978-1-60558-894-0). [S2CID](/source/S2CID_(identifier)) [3006492](https://api.semanticscholar.org/CorpusID:3006492). Retrieved November 11, 2009.

## External links

Wikimedia Commons has media related to [Hypervisor](https://commons.wikimedia.org/wiki/Category:Hypervisor).

- [Hypervisors and Virtual Machines: Implementation Insights on the x86 Architecture](https://www.usenix.org/system/files/login/articles/105498-Revelle.pdf)

- [A Performance Comparison of Hypervisors](https://web.archive.org/web/20180219081010/http://www.cc.iitd.ernet.in/misc/cloud/hypervisor_performance.pdf), VMware

v t e Virtualization software Comparison of platform virtualization software Hardware (hypervisors) Native CP/CMS Hyper-V KVM oVirt LDoms / Oracle VM Server for SPARC Logical partition (LPAR) LynxSecure PikeOS Proxmox VE QNX SIMMON SmartOS VMware ESXi VMware vSphere vCloud VMware Infrastructure Xen XenServer XCP-ng z/VM Hosted Specialized Basilisk II Bochs Cooperative Linux DOSBox DOSEMU 86Box PCem PikeOS SheepShaver SIMH Windows on Windows Virtual DOS machine Win4Lin Independent bhyve Microsoft Virtual Server Parallels Workstation Extreme Parallels Desktop for Mac Parallels Server for Mac PearPC QEMU UTM VirtualBox Virtual Iron Virtual PC VMware Fusion VMware Server VMware Workstation Player Tools Ganeti System Center Virtual Machine Manager Virt-manager Operating system OS containers FreeBSD jail Linux-VServer LXC OpenVZ Solaris Containers sysjail Virtuozzo Workload Partitions Application containers Apptainer Distrobox Docker lmctfy Podman rkt Virtual kernel architectures Rump kernel User-mode Linux vkernel Related kernel features BrandZ cgroups chroot namespaces eBPF seccomp Orchestration Amazon ECS Kubernetes OpenShift Desktop Citrix Virtual Apps Citrix Virtual Desktops Omnissa Horizon Remote Desktop Services Virtual machine Application Ceedo Citrix Virtual Apps Dalvik InstallFree Microsoft App-V Remote Desktop Services Symantec Workspace Virtualization Turbo VMware ThinApp ZeroVM Network Distributed Overlay Virtual Ethernet (DOVE) Ethernet VPN (EVPN) NVGRE Open vSwitch Virtual security switch Virtual Extensible LAN (VXLAN) Generic Network Virtualization Encapsulation (GENEVE) See also BlueStacks See also: List of emulators, List of computer system emulators

---
Adapted from the Wikipedia article [Hypervisor](https://en.wikipedia.org/wiki/Hypervisor) by Wikipedia contributors ([contributor history](https://en.wikipedia.org/wiki/Hypervisor?action=history)). Available under [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). Changes may have been made.
