abclinuxu.cz AbcLinuxu.cz itbiz.cz ITBiz.cz HDmag.cz HDmag.cz abcprace.cz AbcPráce.cz
AbcLinuxu hledá autory!
Inzerujte na AbcPráce.cz od 950 Kč
Rozšířené hledání
×
    dnes 19:33 | Nová verze

    Byla vydána nová verze 9.19 z Debianu vycházející linuxové distribuce DietPi pro (nejenom) jednodeskové počítače. Přehled novinek v poznámkách k vydání. Vypíchnout lze například nový balíček BirdNET-Go, tj. AI řešení pro nepřetržité monitorování a identifikaci ptáků.

    Ladislav Hagara | Komentářů: 0
    dnes 02:22 | Nová verze

    Byla vydána nová verze 3.38 frameworku Flutter (Wikipedie) pro vývoj mobilních, webových i desktopových aplikací a nová verze 3.10 souvisejícího programovacího jazyka Dart (Wikipedie).

    Ladislav Hagara | Komentářů: 0
    dnes 01:33 | Nová verze

    Organizace Apache Software Foundation (ASF) vydala verzi 28 integrovaného vývojového prostředí a vývojové platformy napsané v Javě NetBeans (Wikipedie). Přehled novinek na GitHubu. Instalovat lze také ze Snapcraftu a Flathubu.

    Ladislav Hagara | Komentářů: 0
    včera 16:11 | Nová verze

    Byl vydán Debian 13.2, tj. druhá opravná verze Debianu 13 s kódovým názvem Trixie. Řešeny jsou především bezpečnostní problémy, ale také několik vážných chyb. Instalační média Debianu 13 lze samozřejmě nadále k instalaci používat. Po instalaci stačí systém aktualizovat.

    Ladislav Hagara | Komentářů: 0
    včera 12:11 | IT novinky

    Google představil platformu Code Wiki pro rychlejší porozumění existujícímu kódu. Code Wiki pomocí AI Gemini udržuje průběžně aktualizovanou strukturovanou wiki pro softwarové repozitáře. Zatím jenom pro veřejné. V plánu je rozšíření Gemini CLI také pro soukromé a interní repozitáře.

    Ladislav Hagara | Komentářů: 4
    14.11. 14:22 | Bezpečnostní upozornění

    V přihlašovací obrazovce LightDM KDE (lightdm-kde-greeter) byla nalezena a již opravena eskalace práv (CVE-2025-62876). Detaily v příspěvku na blogu SUSE Security.

    Ladislav Hagara | Komentářů: 5
    14.11. 13:22 | Nová verze

    Byla vydána nová verze 7.2 živé linuxové distribuce Tails (The Amnesic Incognito Live System), jež klade důraz na ochranu soukromí uživatelů a anonymitu. Tor Browser byl povýšen na verzi 15.0.1. Další novinky v příslušném seznamu.

    Ladislav Hagara | Komentářů: 0
    14.11. 10:33 | IT novinky

    Česká národní banka (ČNB) nakoupila digitální aktiva založená na blockchainu za milion dolarů (20,9 milionu korun). Na vytvořeném testovacím portfoliu, jehož součástí jsou bitcoin, stablecoiny navázané na dolar a tokenizované depozitum, chce získat praktickou zkušenost s držením digitálních aktiv. Portfolio nebude součástí devizových rezerv, uvedla dnes ČNB v tiskové zprávě.

    Ladislav Hagara | Komentářů: 44
    14.11. 03:22 | IT novinky

    Apple představil iPhone Pocket pro stylové přenášení iPhonu. iPhone Pocket vzešel ze spolupráce značky ISSEY MIYAKE a Applu a jeho tělo tvoří jednolitý 3D úplet, který uschová všechny modely iPhonu. iPhone Pocket s krátkým popruhem se prodává za 149,95 dolarů (USA) a s dlouhým popruhem za 229,95 dolarů (USA).

    Ladislav Hagara | Komentářů: 17
    14.11. 02:33 | Nová verze

    Byla vydána nová stabilní verze 7.7 webového prohlížeče Vivaldi (Wikipedie). Postavena je na Chromiu 142. Přehled novinek i s náhledy v příspěvku na blogu.

    Ladislav Hagara | Komentářů: 0
    Jaké řešení používáte k vývoji / práci?
     (35%)
     (46%)
     (19%)
     (18%)
     (23%)
     (15%)
     (23%)
     (16%)
     (16%)
    Celkem 356 hlasů
     Komentářů: 16, poslední 12.11. 18:21
    Rozcestník

    AToL: Container virtualization in GNU/Linux

    13.6.2012 14:45 | Přečteno: 810× | Linux

    Autor: František Kobzík
    Nasledovný príspevok je študentskou prácou, ktorá vznikla v rámci predmetu Advanced Topics of Linux Administration. Predmet je vypisovaný na Fakulte informatiky MU v spolupráci so spoločnosťou Red Hat Czech. Vyučovacím jazykom je angličtina a preto je v nej aj nasledovný príspevok, študent nemá právo výberu iného jazyka. Komentáre k obsahu príspevku sú vítané v ľubovoľnom zrozumiteľnom jazyku.

    This article briefly describes container (OS-level) virtualization implementations in GNU/Linux systems.

    Container virtualization provides simple and lightweight way to create and use virtual machines on a single host machine. Virtual machines share the same kernel with the host machine and the resources of the host machine are rather isolated than virtualized. Container virtualization has very small overhead compared to other types of virtualization. Nevertheless, it has its limitations, e.g. the fact that virtual machines can't use their own kernels. It is also impossible to virtualize some resources (typically the hardware clock). For more information on container virtualization in general please visit OpenVZ wiki or Wikipedia article on OS-level virtualization.

    This article focuses on three best-known vitrualization techniques in GNU/Linux - Linux-VServer, OpenVZ and Linux Containers.

    All these systems share these properties and features (which are typical for container virtualization implementations):

    The following paragraphs focus on particular implementations and emphasize their unique features.

    Linux-VServer

    This technology offers basic features needed for virtualization.

    One of interesting features are copy on write filesystems (data is shared between the host and the virtual machines and are copied as soon as it's changed) that saves the disk space.

    Linux-VServer doesn't virtualize network resources using virtual network devices. It only isolates the network communication of the individual virtual servers instances, which implies the fact there is no way to perform advanced network tasks (e.g. define iptables rules) inside the virtual servers. On the other hand this method doesn't introduce almost any overhead in the network communication (as opposed to the following virtualization solutions used by OpenVZ and LXC).

    Linux-VServer makes use of patched Linux kernel and is not supported by libvirt.

    For exhaustive information about this technology visit: Linux-VServer paper and Linux-VServer - List of supported features.

    OpenVZ

    This opensource project is a part of rich (and commercial) virtualization solution called Virtuozzo Containers developed by Parallels.

    The unique feature of this solution is the possibility of checkpointing and migration that allows, among other things, the live migration of virtual machines without noticeable delays.

    The network in OpenVZ is virtualized - the possibilities of setting network within virtual machines are much wider in comparison with the previous solution (e.g. it is possible to set up a firewall or network routes for virtual machines).

    OpenVZ doesn't support copy on write filesystem sharing (as opposed to Linux-VServer) out of the box (something similar can be achieved by using LVM magic but it is not officially supported). This feature is available in the Virtuozzo project.

    OpenVZ requires patched kernel for its run. It is supported by libvirt.

    Exhausting information on OpenVZ can be found on OpenVZ wiki.

    Linux containers (LXC)

    This solution makes heavy use of Linux Control groups mechanisms that have been included in the kernel (since 2.6.24). Cgroups make it possible to limit system resources for a given group of processes. It supports copy on write mechanism and libvirt.

    LXC is the newest project (compared to Linux-VServer and OpenVZ) and it doesn't provide such a variety of possibilities as the feature-richer OpenVZ. It is also not as mature as the other implementations (there were some security flaws, e.g. the possibility of evading the container). Its integration in the kernel can however result in the widening this implementation solution and in implementing missing features.

    For more information see the kernel documentation about cgroups and LXC project page.

           

    Hodnocení: 80 %

            špatnédobré        

    Tiskni Sdílej: Linkuj Jaggni to Vybrali.sme.sk Google Del.icio.us Facebook

    Komentáře

    Vložit další komentář

    14.6.2012 01:06 učitel informatiky
    Rozbalit Rozbalit vše Re: AToL: Container virtualization in GNU/Linux
    Panebože, tento zápis je ale hovadina.
    ISSN 1214-1267   www.czech-server.cz
    © 1999-2015 Nitemedia s. r. o. Všechna práva vyhrazena.