Slashdot Mirror


Fedora 11 To Default To the Ext4 File System

ffs writes "The next release of Fedora, 11, will default to the ext4 file system unless serious regressions are seen, as reported by heise online. The LWN story has a few comments extolling the virtues of the file system. Some benchmarks have shown ext4 to be much faster than the current default ext3. Some of the new features that matter for desktop users are a faster file system check, extents support (for efficiently storing large files and reducing fragmentation), multiblock allocation (faster writes), delayed block allocation, journal checksumming (saving against power / hardware failures), and others. The KernelNewbies page has more information on each feature. As is the extfs tradition, mounting a current ext3 filesystem as ext4 will work seamlessly; however, most new features will not be available with the same on-disk format, meaning a fresh format with ext4 or converting the disk layout to ext4 will offer the best experience."

9 of 161 comments (clear)

  1. No by Anonymous Coward · · Score: 5, Informative

    Ext4 is not a SAN or distributed filesystem. GPFS/lustre/GFS remain a good choice for that.

  2. Re:Why not ReiserFS? by grumbel · · Score: 5, Informative

    ReiserFS isn't actively maintained. In addition to that ext3 and now ext4 have learned quite a few new tricks since ReiserFS first appeared, you can now online resize an ext3 filesystem, it supports hashed b-trees, which should speed up directory handling, it is getting an online defrag tool and a bunch of other goodies. So many of the benefits that ReiserFS originally brought to the table can now be have with ext3 or ext4.

  3. Re:So Ext4 in RH7 ? by eparis · · Score: 5, Informative

    It's already a technology preview in RHEL 5.3.

  4. Re:A few answers by eparis · · Score: 5, Informative

    Yes you are missing something. :) The superblock on all extX say what features they support. So when you mount ext3 as ext4 the mount code can look what features that FS supports and use what new features it has available that won't break it as ext3. If you mount and ext3 fs as ext4 you'll get all of the benefits of ext4 like the enhanced inode allocator and what not, but you won't get extents so your huge file support is limited just like ext3) An ext4 fs can NOT be mounted as ext3 as the files will be stored using new features (like extents) which ext3 doesn't understand. Make sense? There will be (or is?) a conversion tool which will be able to downgrade ext4, but you can't just mount backwards.

  5. Re:How does it compare to ext2? by diegocgteleline.es · · Score: 5, Informative

    is it possible to run ext4 without the journal?

    Yes, it is. And, as you can see in the link, ext4 is faster than ext2. Even with journaling.

  6. Re:EXT4 in Clusters? by Forge · · Score: 3, Informative

    I have used them.

    1. The work for sharing a SAN but are not so useful for clustering local disks.

    2. Even doing what they are good at, setup is a bit more tedious than I would like.

    BTW: A nice setup menu dose not need to be GUI. Many of the console tools in the system-config-whatever series are nice.

    --
    --= Isn't it surprising how badly I spell ?
  7. Re:Fresh format vs conversion by gzipped_tar · · Score: 3, Informative

    Not always. If your old ext3 filesystem uses 128-bit inodes, they'll have to be converted to 256-bit by tune2fs. However, this may not be guaranteed to be successful. Actually it failed miserably on my system (it was several months ago and I don't know whether the e2fsprogs has been improved on this by now). I made backup before carrying out the experiment so after the failure I just reformatted the partition as ext4, updated fstab and recovered from backup.

    --
    Colorless green Cthulhu waits dreaming furiously.
  8. Re:You Can Always Tell The Pioneers ... by BTG9999 · · Score: 3, Informative

    Do you not know what Fedora is? Fedora is a bleeding edge distro. One that is openly acknowledged by Red Hat as being their Beta testers for new technologies that might eventually make it into RHEL. So this is just a standard thing Fedora does.

  9. It WILL Help by maz2331 · · Score: 3, Informative

    Ext4 is orders of magnitude faster than Ext3 regarding fsck time. Your half-day checks will almost certainly be reduced to minutes. The developers rewrote the algorithm to not require as intensive of a search in phase 1.

    If it's really important to get the machines up in minimal time (even at risk of some data loss) then you can turn off the auto checks entirely.