System Virtualization

This post is an introduction to system virtualization.

It is part of a series of articles about virtualization.

Description of System Virtualization

System virtualization implies that a system (such as an operating system is virtualized). Because it was the first virtualization type to appear, it is often just referred as virtualization.

System virtualization is the act of creating a virtual (rather than actual) version of physical hardware, including servers, storage devices, and computer network resources.

Virtualization allows multiple virtual machines (VMs) to run on a single physical machine, each with its own operating system and applications. This enables better resource utilization, scalability, and flexibility in IT environments.

System virtualization is achieved through the use of hypervisors.

Hypervisors

A hypervisor is similar to an emulator; it is computer software, firmware or hardware that creates and runs virtual machines to run virtual systems.

Virtualization types:

  • Type 1 hypervisor
  • Type 2 hypervisor

In a type 1 hypervisor or bare-metal hypervisor, the hypervisor is directly run on the physical hardware.

In a type 2 hypervisor or hosted hypervisor, a host operating system is run on physical hardware, and contains the hypervisor and other applications.

A cloud service provider (CSP) would usually use a type 1 hypervisor, while a end user would usually use a type 2 hypervisor.

Hypervisor Platform Products

You can find examples of hypervisor platform products on this post.

System Virtualization Security

It is very important to maintain the VM isolation.

Hypervisor must be updated to avoid vulnerabilities.

VM escape attack means that the attacker is able to break out the virtualized guest operating system.

VM sprawl happens when there are unused VMs.

You might also be interested in…

Leave a Reply

Your email address will not be published. Required fields are marked *