Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Virtualization

From Wikipedia, the free encyclopedia
Methods for dividing computing resources
Screenshot of one virtualization environment

Incomputing,virtualization (abbreviatedv12n) is a series of technologies that allows dividing of physical computing resources into a series ofvirtual machines,operating systems, processes or containers.[1]Virtualization began in the 1960s with IBMCP/CMS.[1] The control program CP provided each user with a simulated stand-alone System/360 computer.

Inhardware virtualization, thehost machine is the machine that is used by the virtualization and theguest machine is the virtual machine. The wordshost andguest are used to distinguish the software that runs on the physical machine from the software that runs on the virtual machine. The software orfirmware that creates a virtual machine on the host hardware is called ahypervisor orvirtual machine monitor.[2] Hardware virtualization is not the same ashardware emulation. Hardware-assisted virtualization facilitates building a virtual machine monitor and allows guest OSes to be run in isolation.

Desktop virtualization is the concept of separating thelogical desktop from the physical machine.

Operating-system-level virtualization, also known ascontainerization, refers to anoperating system feature in which thekernel allows the existence of multiple isolateduser-space instances.

The usual goal of virtualization is to centralize administrative tasks while improvingscalability and overall hardware-resource utilization.

History

[edit]

A form of virtualization was first demonstrated with IBM'sCP-40 research system in 1967, then distributed viaopen source in CP/CMS in 1967–1972, and re-implemented in IBM'sVM family from 1972 to the present. Each CP/CMS user was provided a simulated, stand-alone computer. Each such virtual machine had the complete capabilities of the underlying machine, and (for its user) the virtual machine was indistinguishable from a private system. This simulation was comprehensive, and was based on thePrinciples of Operation manual for the hardware. It thus included such elements as an instruction set, main memory, interrupts, exceptions, and device access. The result was a single machine that could bemultiplexed among many users.

Hardware-assisted virtualization first appeared on theIBM System/370 in 1972, for use withVM/370, the first virtual machine operating system. IBM added virtual memory hardware to the System/370 series in 1972 which is not the same as Intel VT-x Rings providing a higher privilege level for Hypervisor to properly control Virtual Machines requiring full access to Supervisor and Program or User modes.

With the increasing demand for high-definition computer graphics (e.g.CAD), virtualization of mainframes lost some attention in the late 1970s, when the upcomingminicomputers fostered resource allocation throughdistributed computing, encompassing the commoditization ofmicrocomputers.

The increase in compute capacity per x86 server (and in particular the substantial increase in modern networks' bandwidths) rekindled interest in data-center based computing which is based on virtualization techniques. The primary driver was the potential for server consolidation: virtualization allowed a single server to cost-efficiently consolidate compute power on multiple underutilized dedicated servers. The most visible hallmark of a return to the roots of computing iscloud computing, which is a synonym for data center based computing (or mainframe-like computing) through high bandwidth networks. It is closely connected to virtualization.

The initial implementation x86 architecture did not meet thePopek and Goldberg virtualization requirements to achieve "classical virtualization":

  • equivalence: a program running under thevirtual machine monitor (VMM) should exhibit a behavior essentially identical to that demonstrated when running on an equivalent machine directly
  • resource control (also calledsafety): the VMM must be in complete control of the virtualized resources
  • efficiency: a statistically dominant fraction of machine instructions must be executed without VMM intervention

This made it difficult to implement a virtual machine monitor for this type of processor. Specific limitations included the inability totrap on someprivileged instructions.[3] Therefore, to compensate for these architectural limitations, designers accomplished virtualization of the x86 architecture through two methods:full virtualization orparavirtualization.[4] Both create the illusion of physical hardware to achieve the goal of operating system independence from the hardware but present some trade-offs in performance and complexity.

Full virtualization was not fully available on the x86 platform prior to 2005. Manyplatform hypervisors for the x86 platform came very close and claimed full virtualization (such asAdeos, Mac-on-Linux,Parallels Desktop for Mac,Parallels Workstation,VMware Workstation,VMware Server (formerly GSX Server),VirtualBox, Win4BSD, andWin4Lin Pro).

In 2005 and 2006,Intel andAMD (working independently) created new processor extensions to thex86 architecture called Intel VT-x and AMD-V, respectively. On theItanium architecture, hardware-assisted virtualization is known as VT-i. The first generation of x86 processors to support these extensions were released in late 2005 early 2006:

  • On November 13, 2005, Intel released two models of Pentium 4 (Model 662 and 672) as the first Intel processors to support VT-x.
  • On May 23, 2006, AMD released the Athlon 64 ("Orleans"), the Athlon 64 X2 ("Windsor") and the Athlon 64 FX ("Windsor") as the firstAMD processors to support this technology.

Hardware virtualization

[edit]
Main article:Hardware virtualization

Hardware virtualization (orplatform virtualization) pools computing resources across one or morevirtual machines. A virtual machine implements functionality of a (physical) computer with an operating system. The software orfirmware that creates a virtual machine on the host hardware is called ahypervisor orvirtual machine monitor.[2]

Software executed on these virtual machines is separated from the underlying hardware resources. For example, a computer that is runningArch Linux may host a virtual machine that looks like a computer with theMicrosoft Windows operating system; Windows-based software can be run on the virtual machine.[5][6]

Different types of hardware virtualization include:

  • Full virtualization – Almost complete virtualization of the actual hardware to allow software environments, including a guest operating system and its apps, to run unmodified.
  • Paravirtualization – The guest apps are executed in their own isolated domains, as if they are running on a separate system, but a hardware environment is not simulated. Guest programs need to be specifically modified to run in this environment.
  • Hybrid virtualization – Mostly full virtualization but utilizes paravirtualization drivers to increasevirtual machine performance.

Full virtualization

[edit]
Logical diagram of full virtualization

Full virtualization employs techniques that pools physical computer resources into one or more instances; each running a virtual environment where any software or operating system capable of execution on the raw hardware can be run in the virtual machine. Two common full virtualization techniques are typically used: (a) binary translation and (b) hardware-assisted full virtualization.[1] Binary translation automatically modifies the software on-the-fly to replace instructions that "pierce the virtual machine" with a different, virtual machine safe sequence of instructions.[7] Hardware-assisted virtualization allows guest operating systems to be run in isolation with virtually no modification to the (guest) operating system.

Full virtualization requires that every salient feature of the hardware be reflected into one of several virtual machines – including the full instruction set,input/output operations, interrupts, memory access, and whatever other elements are used by the software that runs on thebare machine, and that is intended to run in a virtual machine.

This approach was pioneered in 1966 with the IBMCP-40 andCP-67, predecessors of theVM family.

Binary translation

[edit]

Inbinary translation, instructions are translated to match the emulated hardware architecture, if the virtual machine implements a differentinstruction set architecture from that of the hardware on which the virtual machine is being run, or to allow thehypervisor to catch hardware references that it must emulate, if the virtual machine implements the same instruction set architecture as the hardware on which the virtual machine is being run.[1] The hypervisor, in this case, translates (if emulating a different instruction set architecture) instructions, or replaces (if emulating the host architecture) some OS instructions with safer equivalents, during runtime. On the other hand, in hardware-assisted virtualization, the hypervisor configures the CPU to use the hardware's virtualization mechanism. Furthermore, a hypervisor is not the same as anemulator; both are computer programs that imitate hardware, but their domain of use in language differs.[8]

Hardware-assisted

[edit]

Hardware-assisted virtualization (oraccelerated virtualization;Xen calls it hardware virtual machine (HVM), andVirtual Iron calls it native virtualization) is a way of improving overall efficiency of hardware virtualization using help from the host processors. A full virtualization is used to emulate a complete hardware environment, orvirtual machine, in which an unmodified guestoperating system (using the sameinstruction set as the host machine) effectively executes in complete isolation.

Hardware-assisted virtualization was first introduced on theIBM 308X processors in 1980, with the Start Interpretive Execution (SIE) instruction.[9] It was added tox86 processors (Intel VT-x,AMD-V orVIA VT) in 2005, 2006 and 2010[10] respectively.

IBM offershardware virtualization for itsIBM Power Systems hardware forAIX,Linux andIBM i, and for itsIBM Zmainframes. IBM refers to its specific form of hardware virtualization as "logical partition", or more commonly asLPAR.

Hardware-assisted virtualization reduces the maintenance overhead of binary translation based virtualization as it reduces (ideally, eliminates) the code that needs to be translated in the guest operating system. It is also considerably easier to obtain better performance.

Paravirtualization

[edit]

Paravirtualization is a virtualization technique that presents a software interface to thevirtual machines which is similar, yet not identical, to the underlying hardware–software interface. Paravirtualization improves performance and efficiency, compared to full virtualization, by having the guest operating system communicate with the hypervisor. By allowing the guest operating system to indicate its intent to the hypervisor, each can cooperate to obtain better performance when running in a virtual machine.

The intent of the modified interface is to reduce the portion of the guest's execution time spent performing operations which are substantially more difficult to run in a virtual environment compared to a non-virtualized environment. The paravirtualization provides specially defined 'hooks' to allow the guest(s) and host to request and acknowledge these tasks, which would otherwise be executed in the virtual domain (where execution performance is worse). A successful paravirtualized platform may allow thevirtual machine monitor (VMM) to be simpler (by relocating execution of critical tasks from the virtual domain to the host domain), and/or reduce the overall performance degradation of machine execution inside the virtual guest.

Paravirtualization requires the guestoperating system to be explicitlyported for the para-API – a conventional OS distribution that is not paravirtualization-aware cannot be run on top of a paravirtualizing VMM. However, even in cases where the operating system cannot be modified, components may be available that enable many of the significant performance advantages of paravirtualization. For example, the Xen WindowsGPLPV project provides a kit of paravirtualization-aware device drivers, that are intended to be installed into aMicrosoft Windows virtual guest running on theXen hypervisor.[11] Such applications tend to be accessible through the paravirtual machine interface environment. This ensures run-mode compatibility across multiple encryption algorithm models, allowing seamless integration within the paravirtual framework.[12]

History

[edit]

The term "paravirtualization" was first used in the research literature in association with theDenali Virtual Machine Manager.[13] The term is also used to describe theXen,L4,TRANGO,VMware,Wind River andXtratuMhypervisors. All these projects use or can use paravirtualization techniques to support high performance virtual machines onx86 hardware by implementing a virtual machine that does not implement the hard-to-virtualize parts of the actual x86 instruction set.[14]

In 2005, VMware proposed a paravirtualization interface, the Virtual Machine Interface (VMI), as a communication mechanism between the guest operating system and the hypervisor. This interface enabled transparent paravirtualization in which a single binary version of the operating system can run either on native hardware or on a hypervisor in paravirtualized mode.

The first appearance of paravirtualization support in Linux occurred with the merge of the ppc64 port in 2002,[15] which supported running Linux as a paravirtualized guest on IBM pSeries (RS/6000) and iSeries (AS/400) hardware.

At the USENIX conference in 2006 inBoston, Massachusetts, a number of Linux development vendors (including IBM, VMware, Xen, and Red Hat) collaborated on an alternative form of paravirtualization, initially developed by the Xen group, called "paravirt-ops".[16] The paravirt-ops code (often shortened to pv-ops) was included in the mainlineLinux kernel as of the 2.6.23 version, and provides a hypervisor-agnostic interface between the hypervisor and guest kernels. Distribution support for pv-ops guest kernels appeared starting with Ubuntu 7.04 and RedHat 9. Xen hypervisors based on any 2.6.24 or later kernel support pv-ops guests, as does VMware's Workstation product beginning with version 6.[17]

Hybrid virtualization

[edit]

Hybrid virtualization combines full virtualization techniques with paravirtualized drivers to overcome limitations with hardware-assisted full virtualization.[18]

A hardware-assisted full virtualization approach uses an unmodified guest operating system that involves many VM traps producing high CPU overheads limiting scalability and the efficiency of server consolidation.[19] The hybrid virtualization approach overcomes this problem.

Desktop virtualization

[edit]
Main article:Desktop virtualization

Desktop virtualization separates thelogical desktop from the physical machine.

One form of desktop virtualization, virtual desktop infrastructure (VDI), can be thought of as a more advanced form of hardware virtualization. Rather than interacting with a host computer directly via a keyboard, mouse, and monitor, the user interacts with the host computer using another desktop computer or a mobile device by means of a network connection, such as aLAN,Wireless LAN or even theInternet. In addition, the host computer in this scenario becomes aserver computer capable of hosting multiple virtual machines at the same time for multiple users.[20]

Companies likeHP andIBM provide a hybrid VDI model with a range of virtualization software and delivery models to improve upon the limitations ofdistributed client computing.[21] Selected client environments move workloads from PCs and other devices to data center servers, creating well-managed virtual clients, with applications and client operating environments hosted on servers and storage in the data center. For users, this means they can access their desktop from any location, without being tied to a single client device. Since the resources are centralized, users moving between work locations can still access the same client environment with their applications and data.[21] For IT administrators, this means a more centralized, efficient client environment that is easier to maintain and able to more quickly respond to the changing needs of the user and business.[22]Another form, session virtualization, allows multiple users to connect andlog into a shared but powerful computer over the network and use it simultaneously. Each is given a desktop and a personal folder in which they store their files.[20] Withmultiseat configuration, session virtualization can be accomplished using a single PC with multiple monitors, keyboards, and mice connected.

Thin clients, which are seen in desktop virtualization, are simple and/or cheap computers that are primarily designed to connect to the network. They may lack significanthard disk storage space,RAM or evenprocessing power, but many organizations are beginning to look at the cost benefits of eliminating "thick client" desktops that are packed with software (and require software licensing fees) and making more strategic investments.[23]

Desktop virtualization simplifies software versioning and patch management, where the new image is simply updated on the server, and the desktop gets the updated version when it reboots. It also enables centralized control over what applications the user is allowed to have access to on the workstation.

Moving virtualized desktops into the cloud creates hosted virtual desktops (HVDs), in which the desktop images are centrally managed and maintained by a specialist hosting firm. Benefits include scalability and the reduction of capital expenditure, which is replaced by a monthly operational cost.[24]

Containerization

[edit]
Main article:Operating-system-level virtualization

Operating-system-level virtualization, also known ascontainerization, refers to anoperating system feature in which thekernel allows the existence of multiple isolateduser-space instances. Such instances, called containers,[25] partitions, virtual environments (VEs) or jails (FreeBSD jail orchroot jail), may look like (physical) computers from the point of view of programs running in them. A computer program running on an ordinary operating system can see all resources (connected devices, files and folders,network shares, CPU power, quantifiable hardware capabilities) of that computer. However, programs running inside a container can only see the container's contents and devices assigned to the container.

This provides many of the benefits that virtual machines have such as standardization and scalability, while using less resources as the kernel is shared between containers.[26]

Containerization started gaining prominence in 2014, with the introduction ofDocker.[27][28]

Miscellaneous types

[edit]
Software
Memory
  • Memory virtualization: Aggregating RAM resources from multiple networked systems into asingle unified memory pool is a concept often referred to asdisaggregated memory,memory pooling, orremote memory access. This architecture aims to overcome the traditional memory limitations of a single system by enabling multiple computers or nodes to share their memory in a high-performance, low-latency manner.
  • Virtual memory: giving an app the impression that it has contiguous working memory, isolating it from the underlying physical memory implementation
Storage
Data
  • Data virtualization: the presentation of data as an abstract layer, independent of underlying database systems, structures and storage
  • Database virtualization: the decoupling of the database layer, which lies between the storage and application layers within the application stack over all
Network

Benefits and disadvantages

[edit]

Virtualization, in particular, full virtualization has proven beneficial for:

  • sharing a computer system among multiple users;
  • isolating users from each other (and from the control program);
  • emulating new hardware to achieve improved reliability, security, and productivity.

A common goal of virtualization is to centralize administrative tasks while improvingscalability and overall hardware-resource utilization. With virtualization, several operating systems can be run in parallel on a singlecentral processing unit (CPU). This parallelism tends to reduce overhead costs and differs from multitasking, which involves running several programs on the same OS. Using virtualization, an enterprise can better manage updates and rapid changes to the operating system and applications without disrupting the user. "

Ultimately, virtualization dramatically improves the efficiency and availability of resources and applications in an organization. Instead of relying on the old model of "one server, one application" that leads to underutilized resources, virtual resources are dynamically applied to meet business needs without any excess fat".[30]

Virtual machines running proprietary operating systems require licensing, regardless of the host machine's operating system. For example, installingMicrosoft Windows into a VM guest requires its licensing requirements to be satisfied.[31][32][33]

See also

[edit]

References

[edit]
  1. ^abcdRodríguez-Haro, Fernando; Freitag, Felix; Navarro, Leandro; Hernánchez-sánchez, Efraín; Farías-Mendoza, Nicandro; Guerrero-Ibáñez, Juan Antonio; González-Potes, Apolinar (2012-01-01)."A summary of virtualization techniques".Procedia Technology. The 2012 Iberoamerican Conference on Electronics Engineering and Computer Science.3:267–272.doi:10.1016/j.protcy.2012.03.029.ISSN 2212-0173.
  2. ^abTurban, E; King, D.; Lee, J.; Viehland, D. (2008). "19".Electronic Commerce A Managerial Perspective(PDF) (5th ed.). Prentice-Hall. p. 27. Archived fromthe original(PDF) on 2009-05-21. Retrieved2023-05-27.
  3. ^Adams, Keith."A Comparison of Software and Hardware Techniques for x86 Virtualization"(PDF). Archived fromthe original(PDF) on 20 August 2010. Retrieved20 January 2013.
  4. ^Chris Barclay,New approach to virtualizing x86s,Network World, 20 October 2006
  5. ^Turban, E; King, D; Lee, J; Viehland, D (2008). "Chapter 19: Building E-Commerce Applications and Infrastructure".Electronic Commerce A Managerial Perspective. Prentice-Hall. p. 27.
  6. ^"Virtualization in education"(PDF).IBM. October 2007. Retrieved6 July 2010.A virtual computer is a logical representation of a computer in software. By decoupling the physical hardware from the operating system, virtualization provides more operational flexibility and increases the utilization rate of the underlying physical hardware.
  7. ^VMware (11 Sep 2007)."Understanding Full Virtualization, Paravirtualization, and Hardware Assist"(PDF).VMware. Archived fromthe original(PDF) on 2008-05-11. Retrieved2021-05-20.
  8. ^Creasy, R.J. (1981)."The Origin of the VM/370 Time-sharing System"(PDF).IBM. Retrieved26 February 2013.
  9. ^IBM System/370 Extended Architecture Interpretive Execution(PDF) (First ed.). IBM. January 1984. SA22-7095-0. RetrievedOctober 27, 2022.
  10. ^"VIA Introduces New VIA Nano 3000 Series Processors".www.via.com.tw (Press release). Archived fromthe original on 22 January 2013. Retrieved10 October 2022.
  11. ^"Installing signed GPLPV drivers in Windows Xen instances".Univention Wiki. Retrieved2013-04-10.The GPLPV driver is a driver for Microsoft Windows, which enables Windows DomU systems virtualised in Xen to access the network and block drivers of the Xen Dom0. This provides a significant performance and reliability gain over the standard devices emulated by Xen/Qemu/Kvm.
  12. ^Armstrong, D (2011). "Performance issues in clouds: An evaluation of virtual image propagation and I/O paravirtualization".The Computer Journal.54 (6):836–849.doi:10.1093/comjnl/bxr011.
  13. ^A. Whitaker; M. Shaw; S. D. Gribble (2002)."Denali: Lightweight Virtual Machines for Distributed and Networked Applications". University of Washington Technical Report. Archived fromthe original on 2008-01-14. Retrieved2006-12-09.
  14. ^Strobl, Marius (2013).Virtualization for Reliable Embedded Systems. Munich: GRIN Publishing GmbH. p. 54,63.ISBN 978-3-656-49071-5.
  15. ^Anton Blanchard."Add ppc64 support".kernel.org. Retrieved2024-04-24.
  16. ^"XenParavirtOps – Xen".Wiki.xenproject.org. Retrieved2017-03-03.
  17. ^"VMware Introduces Support for Cross-Platform Paravirtualization – VMware". VMware. 16 May 2008. Archived fromthe original on 13 April 2011.
  18. ^Jun Nakajima and Asit K. Mallick,"Hybrid-Virtualization—Enhanced Virtualization for Linux"Archived 2009-01-07 at theWayback Machine, inProceedings of the Linux Symposium, Ottawa, June 2007.
  19. ^See"Hybrid Virtualization: The Next Generation of XenLinux".Archived March 20, 2009, at theWayback Machine
  20. ^ab"Strategies for Embracing Consumerization"(PDF). Microsoft Corporation. April 2011. p. 9. Archived fromthe original(PDF) on 15 August 2011. Retrieved22 July 2011.
  21. ^abChernicoff, David (August 19, 2011)."HP VDI Moves to Center Stage".ZDNet.
  22. ^Baburajan, Rajani (August 24, 2011)."The Rising Cloud Storage Market Opportunity Strengthens Vendors".infoTECH. Archived fromthe original on 2012-01-06. Retrieved2011-08-24.
  23. ^"Desktop Virtualization Tries to Find Its Place in the Enterprise". Dell.com. Retrieved2012-06-19.
  24. ^"HVD: the cloud's silver lining"(PDF). Intrinsic Technology. Archived fromthe original(PDF) on 2 October 2012. Retrieved30 August 2012.
  25. ^Hogg, Scott (2014-05-26)."Software Containers: Used More Frequently than Most Realize".Network World. Network World, Inc. Retrieved2015-07-09.
  26. ^Gandhi, Rajeev (2019-02-06)."The Benefits of Containerization and What It Means for You".IBM Blog. Retrieved2024-03-15.
  27. ^Vaughan-Nichols, Steven J. (21 March 2018)."What is Docker and why is it so darn popular?".ZDNet.CBS Interactive.
  28. ^Butler, Brandon (10 June 2014)."Docker 101: What it is and why it's important".Network World.IDG.
  29. ^"Enterprise Systems Group White paper, Page 5"(PDF). Enterprise Strategy Group White Paper written and published on August 20, 2011 by Mark Peters. Archived fromthe original(PDF) on March 30, 2012. RetrievedJuly 18, 2013.
  30. ^"Virtualization in education"(PDF).IBM. October 2007. Retrieved6 July 2010.
  31. ^Foley, Mary Jo (5 July 2012)."Microsoft goes public with Windows Server 2012 versions, licensing".ZDNet.CBS Interactive.Finn explained that Standard covers 2 CPUs in a host, and goes from one VOSE (virtual operating system environment - 1 free Std install in a VM on that host) to two, and 'now has all the features and scalability of Datacenter.' He noted there will be a small price increase, but said he thought that wouldn't matter, as it 'should be virtualized anyway and the VOSE rights doubling will compensate. Windows Server Datacenter was a minimum of two 1-CPU licenses with unlimited VOSEs. 'Now it is a simpler SKU that covers two CPUs in a host with unlimited VOSEs,' Finn said.
  32. ^"Windows Server 2012 Licensing and Pricing FAQ"(PDF). Microsoft. Retrieved5 July 2012.
  33. ^"Licensing Windows desktop operating system for use with virtual machines"(PDF).microsoft.com.Microsoft. Retrieved22 December 2018.

External links

[edit]
Look upvirtualization in Wiktionary, the free dictionary.
Wikimedia Commons has media related toVirtualization.
Hardware
(hypervisors)
Native
Hosted
Specialized
Independent
Tools
Operating
system
OS containers
Application containers
Virtual kernel architectures
Related kernel features
Orchestration
Desktop
Application
Network
See also
Authority control databases: NationalEdit this at Wikidata
Retrieved from "https://en.wikipedia.org/w/index.php?title=Virtualization&oldid=1321363340"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp