Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Design

Is Virtualization Real?


Virtual Servers and Systems

Microsoft, IBM, Sun, and Hewlett-Packard are all investing time and money in virtualization technology, especially server- or operating system-level virtualization. Various approaches can be employed in server and operating system-level virtualization:

Emulation is an ambitious approach, in that the virtual machine (VM) simulates the full hardware of the "guest" machine and thus lets you run unmodified copies of the operating system and applications for a different CPU. Examples include Microsoft Virtual PC for the Power PC, which emulates an x86 machine on Power PC hardware, and PearPC, which emulates in the other direction. But emulation is typically very slow; 10 percent of native speed would be considered good. Some people do not consider emulation to be virtualization at all, but we're taking a catholic view here.

Native virtualization does less, in that it requires the host and guest CPUs to be the same. This buys it a lot in speed as compared to emulation, and native virtualization implementations typically run at native or near-native speed. Native virtualization lets you run an unmodified copy of a different operating system. Examples include VMware, Parallels Desktop, and HP's Integrity Virtual Machines.

In the approach often called "paravirtualization," the hypervisor—the software agent that manages the partitioning of the system—collaborates with the operating system in some of the operating system roles, to make the process more efficient. The VM presents an API that expects system calls from the (modified) operating system. Paravirtualization is typically a native or near-native proposition. Example implementations include Parallels Workstation, Xen, and IBM's VM.

In operating system-level virtualization, the guest applications not only have to be written for the same CPU as the host, but for the same OS as well. The same OS kernel serves all the OS environments, which appear to be separate servers of the same type as the host. Performance is at native speed. Examples include User Mode Linux, Solaris Containers, and FreeBSD Jails.

Server- or operating system-level virtualization offers all sorts of benefits, not limited to expanding Apple's customer base (although would be a nice benefit to Apple). IT managers can use server virtualization to more efficiently manage resources; for example, by eliminating a server dedicated to the sporadic running of some legacy application. And the ability to partition off the resources of the system by creating several virtual servers with different permissions can solve a lot of security problems.


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.