Software:LXC
Developer(s) | |
---|---|
Initial release | August 6, 2008[1] |
Written in | C, Shell |
Operating system | Linux |
Platform | x86, IA-64, PowerPC, SPARC, Itanium, ARM |
Type | OS-level virtualization |
License | GNU LGPL v.2.1 (some components under GNU GPL v2 and BSD) |
Website | linuxcontainers |
Linux Containers (LXC) is an operating-system-level virtualization method for running multiple isolated Linux systems (containers) on a control host using a single Linux kernel.
The Linux kernel provides the cgroups functionality that allows limitation and prioritization of resources (CPU, memory, block I/O, network, etc.) without the need for starting any virtual machines, and also the namespace isolation functionality that allows complete isolation of an application's view of the operating environment, including process trees, networking, user IDs and mounted file systems.[2]
LXC combines the kernel's cgroups and support for isolated namespaces to provide an isolated environment for applications.[3] Early versions of Docker used LXC as the container execution driver,[3] though LXC was made optional in v0.9 and support was dropped in Docker v1.10.[4][5]
Overview
LXC was initially developed by IBM, as part of a collaboration between several parties looking to add namespaces to the kernel.[6] It provides operating system-level virtualization through a virtual environment that has its own process and network space, instead of creating a full-fledged virtual machine. LXC relies on the Linux kernel cgroups functionality[7] that was released in version 2.6.24. It also relies on other kinds of namespace isolation functionality, which were developed and integrated into the mainline Linux kernel.
Security
Originally, LXC containers were not as secure as other OS-level virtualization methods such as OpenVZ: in Linux kernels before 3.8, the root user of the guest system could run arbitrary code on the host system with root privileges, just as they can in chroot jails.[8] Starting with the LXC 1.0 release, it is possible to run containers as regular users on the host using "unprivileged containers".[9] Unprivileged containers are more limited in that they cannot access hardware directly. However, even privileged containers should provide adequate isolation in the LXC 1.0 security model, if properly configured.[9]
Alternatives
LXC is similar to other OS-level virtualization technologies on Linux such as OpenVZ and Linux-VServer, as well as those on other operating systems such as FreeBSD jails, AIX Workload Partitions and Solaris Containers. In contrast to OpenVZ, LXC works in the vanilla Linux kernel requiring no additional patches to be applied to the kernel sources. Version 1 of LXC, which was released on 20 February 2014 as a long-term supported version, was supported for five years.[10] LXC 4.0 will be supported until June 1, 2025 and LXC 5.0 until June 1, 2027.[11]
LXD
LXD is an alternative Linux container manager. It is built on top of LXC and aims to provide a better user experience.[12] It is a container hypervisor providing an API to manage LXC containers.[13] The LXD project was started in 2015 and was sponsored from the start by Canonical Ltd., the company behind Ubuntu Linux. On 4 July 2023, the LinuxContainers project announced that Canonical had decided to take over the LXD project.[14][15]On August 25, 2023, LXD version 5.17 was officially released under the control of Canonical, providing support for OpenZFS 2.2 delegation capabilities.[16]
See also
- Open Container Initiative
- Container Linux (formerly CoreOS Linux)
- Docker, a project automating the deployment of applications inside software containers
- Apache Mesos, a large-scale cluster management platform based on container isolation
- Operating system-level virtualization implementations
- Proxmox Virtual Environment, an open-source server virtualization management platform supporting LXC containers and KVM
- Anbox, uses LXC to execute Android applications in other Linux distributions
References
- ↑ "Downloads". https://linuxcontainers.org/downloads/.
- ↑ Rami Rosen (May 2013). "Resource management: Linux kernel namespaces and cgroups". UCSB. https://www.cs.ucsb.edu/~rich/class/cs293b-cloud/papers/lxc-namespace.pdf.
- ↑ 3.0 3.1 Kenlon, Seth (2020-01-30). "Exploring simple Linux containers with lxc". IBM. https://www.redhat.com/sysadmin/exploring-containers-lxc.
- ↑ "Docker 0.9: introducing execution drivers and libcontainer" (in en-US). Blog (Docker). 2014-03-10. https://blog.docker.com/2014/03/docker-0-9-introducing-execution-drivers-and-libcontainer/.
- ↑ "1.10.0". Engine release notes. Docker. 2016-02-04. https://docs.docker.com/engine/release-notes/prior-releases/#1100-2016-02-04.
- ↑ Webb, Jordan (2022-09-13). "LXC and LXD: a different container story". https://lwn.net/Articles/907613/.
- ↑ Koutoupis, Petros (2018-08-27). "Everything You Need to Know about Linux Containers, Part II: Working with Linux Containers (LXC)". https://www.linuxjournal.com/content/everything-you-need-know-about-linux-containers-part-ii-working-linux-containers-lxc.
- ↑ Marco, d'Itri (2011). "Evading from linux containers". BOFH. http://blog.bofh.it/debian/id_413.
- ↑ 9.0 9.1 Graber, Stéphane (1 January 2014). "LXC 1.0: Security features [6/10"]. https://www.stgraber.org/2014/01/01/lxc-1-0-security-features/. "However, at least in Ubuntu, our default containers ship with what we think is a pretty good configuration of both the cgroup access and an extensive apparmor profile which prevents all attacks that we are aware of. [...] LXC is no longer running as root so even if an attacker manages to escape the container, he’d find himself having the privileges of a regular user on the host"
- ↑ Graber, Stéphane (2013-12-20). "LXC 1.0: Your first Ubuntu container". St. Graber. https://www.stgraber.org/2013/12/20/lxc-1-0-your-first-ubuntu-container/.
- ↑ "LXC". Linux containers. https://linuxcontainers.org/lxc/introduction/.
- ↑ "Introdution". LXD. Linux Containers. https://linuxcontainers.org/lxd/introduction/.
- ↑ Parrott, Thomas. "Introduction to LXD projects". Canonical. https://ubuntu.com/tutorials/introduction-to-lxd-projects#1-overview.
- ↑ "LXD Has been moved to Canonical". 2023-07-04. https://linuxcontainers.org/lxd/.
- ↑ Rudra, Sourav (2023-07-05). "The LXD Project Finds a New Home at Canonical". It’s Foss. https://news.itsfoss.com/canonical-lxd-project/.
- ↑ Parrott, Thomas (25 August 2023). "LXD 5.17 has been released". Canonical. https://discourse.ubuntu.com/t/lxd-5-17-has-been-released/38061.
External links
- IBM developerworks article about LXC
- "Evading from Linux Containers" by Marco D'Itri
- Presentation about cgroups and namespaces, the underlying technology of Linux containers, by Rami Rosen
- Presentation about Linux Containers and the future cloud, by Rami Rosen
- LXC : Install and configure the Linux Containers
- LSS: Secure Linux containers (LWN.net)
- Introduction to Linux Containers
- LXC on Android on YouTube, April 2013
Original source: https://en.wikipedia.org/wiki/LXC.
Read more |