There’s been some Friday night kernel drama on the Linux kernel mailing list… Linus Torvalds has expressed regrets for merging the Bcachefs file-system and an ensuing back-and-forth between the file-system maintainer.

  • @linearchaos
    link
    English
    3220 days ago

    You might as well say use fat32 it just works.

    • Fonzie!
      link
      fedilink
      219 days ago

      FAT32 does not just work for my Linux OS.

      To people who just want to browse the web, use Office applications and a few other things, ext4 just works and FAT32 really just doesn’t.

      I get the point you’re trying to make, FAT32 also has a small file size and is missing some features, ext4 is like that to for instance Bcachefs.
      But FAT32 (and exFAT and a few others) have a completely different use cases; I couldn’t use FAT32 for Linux and expect it to work, I also couldn’t use ext4 for my USB stick and expect it to just work as a USB stick.

      • @[email protected]
        link
        fedilink
        218 days ago

        I also couldn’t use ext4 for my USB stick and expect it to just work as a USB stick.

        Why not? It can be adapted to a smaller drive size fairly easily during filesystem creation.

        • Fonzie!
          link
          fedilink
          0
          edit-2
          17 days ago

          True, but for me and many others USBs are also just massively portable. Since macOS, Windows and many others (phones, consoles, smart TVs…) don’t speak ext4 but do all speak FAT32 and exFAT, that makes exFAT the way to go on USB drives.

      • @linearchaos
        link
        English
        1420 days ago

        Like there’s not a bunch of stuff EXT 4 can’t do that BTRFS and whatever this other acronym soup can do.

        It’s the entire point of my post. E x t 4 does work but it doesn’t do the stuff these other file systems do so they are an advantageous choice for some things.

        • Riskable
          link
          fedilink
          English
          1220 days ago

          One point: ext4 has a maximum file size of 16TiB. To a regular user that is stupidly huge and of no concern but it’s exactly the type of thing you overlook if you “just use ext4” on anything and everything then end up with your database broken at work because of said bad advice.

          Use the filesystem that makes the most sense for your use case. Consider it every single time you format a disk. Don’t become complacent! Also fuck around with the new shit from time to time! I decided to format my Linux desktop partitions with btrfs over a decade ago and as a result I’m an excellent user of that filesystem but you know what? I’m thinking I’ll try bcachefs soon and fiddle around more with my zfs partition on my HTPC.

          BTW: If you’re thinking about trying out btrfs I would encourage you to learn about it’s non-trivial maintenance tasks. btrfs needs you to fuck with it from time to time or you’ll run out of disk space “for no reason”. You can schedule cron jobs to take care of everything (as I have done) but you still need to learn how it all works. It’s not a “set it and forget it” FS like ext4.

          • @[email protected]
            link
            fedilink
            419 days ago

            For a few years I used a distro that had btrfs as default, including scheduled automatic maintenance. Never had to bother about manual balancing or fiddeling with the FS.

          • @linearchaos
            link
            English
            219 days ago

            I have 52 terabytes of BTRFS, I’ve been on it for about 5 years.

        • @[email protected]
          link
          fedilink
          -3
          edit-2
          20 days ago

          I think we’re just talking about different priorities. For me stability is the most important in production. For you features seem to matter more. For me it’s enough if a file system can store, write, read and not lose files. I guess it depends on what the use case and the budget are.

          • @linearchaos
            link
            English
            1020 days ago

            Yeah, some people have needs that you don’t have. That’s why I commented on your blanket statement of just use EXT4.

            I have BTRFS in production all over the place. Snapshots are extremely useful for what I do.

          • @[email protected]
            link
            fedilink
            520 days ago

            ext4 aims to not lose data under the assumption that the single underlying drive is reliable. btrfs/bcachefs/ZFS assume that one/many of the perhaps dozens of underlying drives could fail entirely or start returning garbage at any time, and try to ensure that the bad drive can be kicked out and replaced without losing any data or interrupting the system. They’re both aiming for stability, but stability requirements are much different at scale than a “dumb” filesystem can offer, because once you have enough drives one of them WILL fail and ext4 cannot save you in that situation.

            Complaining that datacenter-grade filesystems are unreliable when using them in your home computer is like removing all but one of the engines from a 747 and then complaining that it’s prone to crashing. Of course it is, because it was designed under the assumption that there would be redundancy.

          • @HarriPotero
            link
            420 days ago

            and not lose files

            Which is exactly why you’d want to run a CoW filesystem with redundancy.

          • @[email protected]
            link
            fedilink
            4
            edit-2
            19 days ago

            Well, yes use-case is key. But interestingly ext4 will never detect bitrot/errors/corruption. BTRFS will detect corrupted files because its targeted users wants to know. It makes it difficult to say what’s the more reliable FS because first we’d have to define “reliable” and the perception of it and who/what do we blame when the FS tells us there’s a corrupted file detected?. Do we shoot the messenger?

      • Skull giver
        link
        fedilink
        120 days ago

        FAT32 goes up to 2TB. 16TB if you increase the sector size beyond what Windows supports. The only limit you may run into is the 256GiB file size limit. For most installs, it does indeed just work.

        • @[email protected]
          link
          fedilink
          English
          319 days ago

          It also does not support unix file permissions - so for most installs it does indeed not work.

    • Quazatron
      link
      -1020 days ago

      No. You can layer ext4 with LVM and LUKS to get a lot of features (but not all) that you get with BTRFS or ZFS. FAT is not suitable for anything other than legacy stuff.

      • @linearchaos
        link
        English
        2520 days ago

        My point is there are features that you don’t get in EXT that are completely reasonable to use and workflows.

        When someone says just use EXT4, they’re just missing the fact that people may want or need those other features.

        Your response to FAT is exactly my point.