- Learning Windows Server Containers
- Srikanth Machiraju
- 242字
- 2021-07-02 23:23:19
A few key implementations of containers
Some of the key implementations of containers are as follows:
- The word container has been around since 1982 with the introduction of chroot by Unix, which introduced process isolation. Chroot creates a virtual root directory for a process and its child processes, the process running under chroot cannot access anything outside the environment. Such modified environments are also called chroot jails.
- In 2000, a new isolation mechanism for FreeBSD (a free Unix like OS) was introduced by R&D Associates, Inc.'s owner, Derrick T. Woolworth, it was named jails. Jails are isolated virtual instances of FreeBSD under a single kernel. Each jail has its own files, processes, users, and super accounts. Each jail is sealed from other jails.
- Solaris introduced its OS virtualization platform called zones in the year 2004 with Solaris 10. One or more applications can run within a zone in isolation. Inter-zone communication was also possible using network APIs.
- In 2006, Google launched process containers, a technology designed for limiting, accounting, and isolating resource usage. It was later renamed to control groups (cgroups) and merged into the Linux kernel 2.6.24.
- In 2008, Linux launched its first out-of-the-box implementation of containers called Linux containers (LXC) a derivative of OpenVZ (OpenVZ developed an extension to Linux with the same features earlier). It was implemented using cgroups and namespaces. The cgroups allow management and prioritization for CPU, memory, block I/O, and network. Namespaces provided isolation.
推薦閱讀
- pcDuino開發實戰
- BPEL and Java Cookbook
- FreeRTOS實時內核應用指南
- 操作系統基礎與實踐:基于openEuler平臺
- 構建可擴展分布式系統:方法與實踐
- Windows Phone 7.5 Data Cookbook
- macOS效率手冊
- Windows Server 2012網絡操作系統企業應用案例詳解
- Windows Server 2019 Administration Fundamentals
- STM32庫開發實戰指南:基于STM32F4
- AWS Development Essentials
- Cassandra 3.x High Availability(Second Edition)
- CentOS 6 Linux Server Cookbook
- iOS 10快速開發:18天零基礎開發一個商業應用
- Linux內核修煉之道