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 17:44 | Zajímavý článek

    Devadesátková hra Brány Skeldalu prošla portací a je dostupná na platformě Steam. Vyšel i parádní blog autora o portaci na moderní systémy a platformy včetně Linuxu.

    karkar | Komentářů: 0
    dnes 12:11 | Humor

    Lidi dělají divné věci. Například spouští Linux v Excelu. Využít je emulátor RISC-V mini-rv32ima sestavený jako knihovna DLL, která je volaná z makra VBA (Visual Basic for Applications).

    Ladislav Hagara | Komentářů: 1
    dnes 10:44 | IT novinky

    Revolut nabídne neomezený mobilní tarif za 12,50 eur (312 Kč). Aktuálně startuje ve Velké Británii a Německu.

    Ladislav Hagara | Komentářů: 21
    dnes 09:55 | IT novinky

    Společnost Amazon miliardáře Jeffa Bezose vypustila na oběžnou dráhu první várku družic svého projektu Kuiper, který má z vesmíru poskytovat vysokorychlostní internetové připojení po celém světě a snažit se konkurovat nyní dominantnímu Starlinku nejbohatšího muže planety Elona Muska.

    Ladislav Hagara | Komentářů: 0
    dnes 09:33 | IT novinky

    Poslední aktualizací začal model GPT-4o uživatelům příliš podlézat. OpenAI jej tak vrátila k předchozí verzi.

    Ladislav Hagara | Komentářů: 0
    dnes 08:11 | Nová verze

    Google Chrome 136 byl prohlášen za stabilní. Nejnovější stabilní verze 136.0.7103.59 přináší řadu novinek z hlediska uživatelů i vývojářů. Podrobný přehled v poznámkách k vydání. Opraveno bylo 8 bezpečnostních chyb. Vylepšeny byly také nástroje pro vývojáře.

    Ladislav Hagara | Komentářů: 0
    včera 20:55 | Nová verze

    Homebrew (Wikipedie), správce balíčků pro macOS a od verze 2.0.0 také pro Linux, byl vydán ve verzi 4.5.0. Na stránce Homebrew Formulae lze procházet seznamem balíčků. K dispozici jsou také různé statistiky.

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

    Byl vydán Mozilla Firefox 138.0. Přehled novinek v poznámkách k vydání a poznámkách k vydání pro vývojáře. Řešeny jsou rovněž bezpečnostní chyby. Nový Firefox 138 je již k dispozici také na Flathubu a Snapcraftu.

    Ladislav Hagara | Komentářů: 0
    včera 15:55 | Pozvánky

    Šestnáctý ročník ne-konference jOpenSpace se koná 3. – 5. října 2025 v Hotelu Antoň v Telči. Pro účast je potřeba vyplnit registrační formulář. Ne-konference neznamená, že se organizátorům nechce připravovat program, ale naopak dává prostor všem pozvaným, aby si program sami složili z toho nejzajímavějšího, čím se v poslední době zabývají nebo co je oslovilo. Obsah, který vytvářejí všichni účastníci, se skládá z desetiminutových

    … více »
    Zdenek H. | Komentářů: 2
    včera 15:44 | IT novinky Ladislav Hagara | Komentářů: 4
    Jaký filesystém primárně používáte?
     (58%)
     (1%)
     (9%)
     (22%)
     (4%)
     (1%)
     (2%)
     (0%)
     (1%)
     (3%)
    Celkem 492 hlasů
     Komentářů: 19, poslední dnes 11:32
    Rozcestník

    ATOL: Comparison of filesystems in Linux

    8.4.2008 09:53 | Přečteno: 1363× | Linux

    Author: Pavol Babinčák (AToL - PV208, FI.MUNI)

    Introduction to filesystems

    Main purpose of filesystems is store data and allow operating system to find and access to them. This includes support for hierarchical organization, manipulating and data retrieval. On the top of that filesystems provides unique properties and services like consistency check, snapshot of all data, support for high availability, failure resistence, etc.

    Filesystem data structures can be used on various storage media from virtual filesystems in memory through magnetic devices such as hard disk to read only media like DVD ROM. Connection method between storage media and logic which understand format of file system are from local bus in PC to network relayed devices like SAN (Storage area network).

    There exist many different filesystems which can be divided into categories by level of suitability for these storage media and connection method. In this paper I have chosen two categories and three file systems from each of them. For every filesystem I will focus on some interesting features which provides that filesystem. All of mentioned filesystems can be used on Linux system with or without additional effort in the form of patching kernel.

    Disk file systems

    Disk file systems are connected to PC by local interface like (P|S)ATA. This connection method is most widely used for common PC and for some reasons in servers. It is cheap, relative fast but without use of other technologies (like RAID) it easily affected to hardware failures. In same time only one PC (operating system) is supposed to access to this file system so there is no need to consider concurrent access.

    Extended file system (ext2, ext3)

    Extended file system was designed for Linux needs. Second version of filesystem (abbrevia- ted as ext2) was default on many Linux distributions in past. Now same applies to third version (ext3). Therefore it is used by large amount of computers and is probable that most of bugs in drivers for this filesystem were found. It is very stable filesystem and has good support from developers. Unexpected reboot can hurt filesystem consistency when buffered data are not written to disk. This is found on computer boot and filesystem check is run automatically. In second version this repair is quite slow for large filesystems. Third version of filesystem is ext2 with journaling support. Journaling is used to solve problem of slow consistency check. [from now on all mentioned filesystems has journaling support] Ext3 is backward compatible with ext2 however it has poor performance for some metada- ta operations. Some of interesting features are immutable files (which can not be deleted only read), append-only files (data can be only appended---good for log files).

    ReiserFS

    Most mentioned feature about ReiserFS is excelent performance with large amount of small files. Filesystem is not so stable and it has less support from developers. Third version is in mainline Linux kernel, fourth version not in kernel has features like plugin driven architecture and transaction support.

    XFS

    XFS has good performance for large files, directories with many entries and big filesys- tems. Filesystem repair in case of failure is quite slow similarly directory entries creati- on/deletion. Some of features are delayed allocation for reducing fragmentation and native backup/restore utilities able to make FS dump without unmounting.

    Shared disk file systems

    Shared disk filesystems are also known as SAN or cluster filesystems. SAN is often used architecture for sharing access to hard disk. This type of access to disk are used in clusters so hardware failure of computer node does not affect availability of data on hard disks because another node can substitute failed node.

    Global File System

    Global file system (GFS) uses peer to peer architecture where all nodes are equal in control- ling access to shared resources. It has support for databases allowing direct I/O operations. With dynamic multi-path routing data can be routed around failed components.

    General Parallel File System

    General Parallel file system (GPFS) is proprietary filesystem used on very large clusters (up to 2000 nodes) for high performance computing and grids. SQL (structured query language) syntax is used for defining placement and management policies for files. GPFS offers high availability (HA) for NFS (network filesystem) and can work on top of shared disk or network block I/O.

    Lustre

    Lustre (named from Linux and Cluster) is cluster filesystem on top of modified ext3. It uses architecture with object storage servers (typically 2--8) and clients acessing to data. It has direct support of HA, recovery and transparent reboots of storage servers. Data blocks can be stripped across objects so there no size limit of storage object.

    References

    Other resources can be found on Wikipedia pages with keywords: Reiserfs, XFS, IBM General Parallel File System, Lustre (file system), Shared disk file system.

           

    Hodnocení: 22 %

            špatnédobré        

    Anketa

    How do you rate this article?
     (0 %)
     (20 %)
     (80 %)
    Celkem 40 hlasů

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

    Komentáře

    Vložit další komentář

    8.4.2008 10:51 filbar | skóre: 36 | blog: Denicek_programatora | Ostrava
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    Proč je to v angličtině? :O
    8.4.2008 11:01 Marek 'marx' Grác | skóre: 21 | blog: Paralelný blog | Brno / Bratislava
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    Pretože, všetky príspevky v tomto blogu sú (a zrejme aj budú) anglicky. Dovody sú vysvetlené v úvodnom príspevku.
    8.4.2008 15:45 alium | skóre: 38 | blog: Category 1100
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    a jste si jisty, ze to je vhodne pro abclinuxu.cz, kde ne kazdy umi anglicky?
    8.4.2008 16:22 Marek 'marx' Grác | skóre: 21 | blog: Paralelný blog | Brno / Bratislava
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    Každý príspevok má anglický nadpis a v názve ATOL. Obvykle aj v perexe je vidno, že sa jedná o anglický príspevok. Kto nechce nech nekliká. Áno, myslím si, že sú vhodné pre tento server. Od každého administrátora je vyžadovaná (dúfam) aspoň schopnosť čítať po anglicky. Pri bežných používateľoch to je samozrejme niečo iné. Ostatne pre nich tieto články nie sú určené.
    8.4.2008 17:11 filbar | skóre: 36 | blog: Denicek_programatora | Ostrava
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    Je pravda, že angličtina je lepší než slovenština.
    8.4.2008 18:03 pils | skóre: 8 | blog: pils
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    :-)
    In TUX we trust
    Dalibor Smolík avatar 8.4.2008 18:12 Dalibor Smolík | skóre: 54 | blog: Postrehy_ze_zivota | 50°5'31.93"N,14°19'35.51"E
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    Není lepší, ale ten příspěvek si statisticky přečte víc lidi :-D
    Rozdíly v řeči a ve zvyklostech neznamenají vůbec nic, budeme-li mít stejné cíle a otevřená srdce.
    8.4.2008 20:53 alium | skóre: 38 | blog: Category 1100
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    Ked si chces procvicit anglictinu, mozes to pod to napisat aj po slovensky, vela ludi neumi dobre anglicky, aj ked vela rozumi PC... Ale ked nechces nechaj byt. Sam sebe ctenarom.
    8.4.2008 20:55 alium | skóre: 38 | blog: Category 1100
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    nakoniec pisaj si co chces... :-)
    8.4.2008 21:02 Marek 'marx' Grác | skóre: 21 | blog: Paralelný blog | Brno / Bratislava
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    To je po aky? :)

    V prvom príspevku je popísané (neanglicky), prečo sú tie práce po anglicky. V skratke: Sú to študentské práce, preto má každá z nich iného autora (oficiálny autor je ATOL, blog ATOL @ FI). V prípade, že by tie práce boli publikované len na stránke predmetu, tak k nim nebude rozumný feedback (a zhnijú ako mnoho iných dobrých i zlých prác). Príspevky sú písané až po prezentácií a sú prezentované, tak ako boli odovzdané [akurát prehadzujem do HTML]. A prečo sú po anglicky? Pretože celý predmet 'Advanced Topics of Linux Administration' sa vyučuje po anglicky.
    8.4.2008 12:10 frdrx | skóre: 29 | blog: frdrx
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    Proč to není v angličtině?
    Patička mi slouží k tomu, abych si lépe poznal svoje příspěvky.
    Luboš Doležel (Doli) avatar 8.4.2008 22:32 Luboš Doležel (Doli) | skóre: 98 | blog: Doliho blog | Kladensko
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    Skóre:

    Neurčité členy: ani jeden
    Určité členy: dva a jeden z nich je blbě

    V ČR je to takový průtěr, když dojde na jazyky :-(

    24.7.2008 23:12 Scrool | skóre: 2
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    V ČR je to takový průtěr, když dojde na jazyky :-(
    Nielen v ČR. Autor študoval na Slovensku.
    8.4.2008 20:29 Kvakor
    Rozbalit Rozbalit vše ReiserFS
    U ReiserFS by bylo dobre rozlisit verzi 3 a verzi 4. Zatimco verze 3 (akt. verze je 3.6) je nyni povazovana za dostacecne stabilni i pro produkcni prostredi a nektere distribuce ji bezne pouzivaji jako defaulni souborovy system, verze 4 (aka Reiser4) je porad silne experimentalni.
    9.4.2008 08:35 MJ | Tady a teď
    Rozbalit Rozbalit vše Re: ATOL: Comparison of filesystems in Linux
    Most mentioned feature about ReiserFS is excelent performance with large amount of small files.
    Most mentioned sice je, ale bohužel to není tak docela pravda. Pokud to na ext3 nepřeženete s velikostí adresářů a malé souborky pečlivě rozstrkáte do adresářové hierarchie, bývá ext3 dokonce výrazně rychlejší než Reiser3. Důvod je jednoduchý: při zakládání spousty souborů je ext3 prostě strká za sebe a občas aktualizuje adresáře, zatímco Reiser3 složitě rebalancuje stromy.

    Založit nové vláknoNahoru

    ISSN 1214-1267   www.czech-server.cz
    © 1999-2015 Nitemedia s. r. o. Všechna práva vyhrazena.