User-mode Linux

From Wikipedia, the free encyclopedia
(Redirected from User:Millis/User Mode Linux)
User-mode Linux
Written inC
TypeVirtualization
LicenseGNU General Public License
Websiteuser-mode-linux.sourceforge.net

User-mode Linux (UML) is a virtualization system for the Linux operating system based on an architectural port of the Linux kernel to its own system call interface, which enables multiple virtual Linux kernel-based operating systems (known as guests) to run as an application within a normal Linux system (known as the host). A Linux kernel compiled for the um architecture can then boot as a process under another Linux kernel, entirely in user space, without affecting the host environment's configuration or stability.

This method gives the user a way to run many virtual Linux machines on a single piece of hardware, allowing some isolation, typically without changing the configuration or stability of the host environment because each guest is just a regular application running as a process in user space.

Applications[edit]

Numerous things become possible through the use of UML.[1] One can run network services from a UML environment and remain totally sequestered from the main Linux system in which the UML environment runs.[2][3][4][5][6] Administrators can use UML to set up honeypots,[7] which allow one to test the security of one's computers or network. UML can serve to test and debug new software without adversely affecting the host system. UML can also be used for teaching and research, providing a realistic Linux networked environment with a high degree of safety.

In UML environments, host and guest kernel versions don't need to match, so it is entirely possible to test a "bleeding edge" version of Linux in User-mode on a system running a much older kernel. UML also allows kernel debugging to be performed on one machine, where other kernel debugging tools (such as kgdb) require two machines connected with a null modem cable.

Some web hosting providers offer UML-powered virtual servers for lower prices than true dedicated servers. Each customer has root access on what appears to be their own system, while in reality one physical computer is shared between many people.

libguestfs has supported a UML backend since version 1.24[8] as an alternative to using QEMU or KVM.

Integration into the Linux kernel[edit]

The UML guest application (a Linux binary ELF) was originally available as a patch for some Kernel versions above 2.2.x, and the host with any kernel version above 2.2.x supported it easily in the thread mode (i.e., non-SKAS3).

As of Linux 2.6.0, it is integrated into the main kernel source tree. A method of running a separate kernel address space (SKAS) that does not require host kernel patching has been implemented. This improves performance and security over the old Traced Thread approach, in which processes running in the UML share the same address space from the host's point of view, which leads the memory inside the UML to not be protected by the memory management unit. Unlike the current UML using SKAS, buggy or malicious software inside a UML running on a non-SKAS host could be able to read the memory space of other UML processes or even the UML kernel memory.[citation needed]

Comparison with other technologies[edit]

User-mode Linux is generally considered[by whom?] to have lower performance than some competing technologies, such as Xen and OpenVZ.[citation needed] Future work in adding support for x86 virtualization to UML may reduce this disadvantage.

Often cited as a strength of Xen (a competing technology) is support for thread-local storage (TLS). This is now also supported in the latest UML kernels. Xen concentrates on virtualizing the whole machine, and thus all systems running on a Xen machine are really virtual machines. In UML, the host machine is not virtualized in any way, and only guest systems are true virtual machines. This allows UML guest direct access to host filesystems and hardware, where it is common to map a host directory (e.g., /uml/root/).

Supported platforms[edit]

UML was originally designed for the x86 instruction set, but has also been ported to others including IA-64 and PowerPC.[citation needed]

See also[edit]

References[edit]

  1. ^ Landley, Rob (2009-12-16). "Rob's quick and dirty UML howto". Retrieved 2023-08-08.
  2. ^ "Virtual Network User-Mode-Linux". 2012-02-13. Retrieved 2023-08-08.
  3. ^ "Netkit: Features". 2009-12-03. Archived from the original on 2020-05-11. Retrieved 2023-08-08.
  4. ^ Jean-Vincent Loddo; Luca Saiu. "Marionnet: a virtual network laboratory". Retrieved 2023-08-08.
  5. ^ "Cloonix Documentation: v03-04". 2019-06-01. Retrieved 2023-08-08.
  6. ^ "Welcome to GINI! A Toolkit for Constructing User-Level Micro Internets". McGill University. 2009-09-28. Retrieved 2023-08-08.
  7. ^ "UML as a honeypot". 2007-07-13. Retrieved 2023-08-08.
  8. ^ Richard WM Jones (August 11, 2013). "Experimental User-Mode Linux backend for libguestfs". Retrieved 2019-08-29.

External links[edit]