You know, ZFS, ButterFS (btrfs…its actually “better” right?), and I’m sure more.

I think I have ext4 on my home computer I installed ubuntu on 5 years ago. How does the choice of file system play a role? Is that old hat now? Surely something like ext4 has its place.

I see a lot of talk around filesystems but Ive never found a great resource that distiguishes them at a level that assumes I dont know much. Can anyone give some insight on how file systems work and why these new filesystems, that appear to be highlights and selling points in most distros, are better than older ones?

Edit: and since we are talking about filesystems, it might be nice to describe or mention how concepts like RAID or LUKS are related.

  • aksdb@feddit.de
    link
    fedilink
    arrow-up
    106
    ·
    edit-2
    7 months ago

    As with every software/product: they have different features.

    ZFS is not really hip. It’s pretty old. But also pretty solid. Unfortunately it’s licensed in a way that is maybe incompatible with the GPL, so no one wants to take the risk of trying to get it into Linux. So in the Linux world it is always a third-party-addon. In the BSD or Solaris world though …

    btrfs has similar goals as ZFS (more to that soon) but has been developed right inside the kernel all along, so it typically works out of the box. It has a bit of a complicated history with it’s stability/reliability from which it still suffers (the history, not the stability). Many/most people run it with zero problems, some will still cite problems they had in the past, some apparently also still have problems.

    bcachefs is also looming around the corner and might tackle problems differently, bringing us all the nice features with less bugs (optimism, yay). But it’s an even younger FS than btrfs, so only time will tell.

    ext4 is an iteration on ext3 on ext2. So it’s pretty fucking stable and heavily battle tested.

    Now why even care? ZFS, btrfs and bcachefs are filesystems following the COW philisophy (copy on write), meaning you might lose a bit performance but win on reliability. It also allows easily enabling snapshots, which all three bring you out of the box. So you can basically say “mark the current state of the filesystem with tag/label/whatever ‘x’” and every subsequent changes (since they are copies) will not touch the old snapshots, allowing you to easily roll back a whole partition. (Of course that takes up space, but only incrementally.)

    They also bring native support for different RAID levels making additional layers like mdadm unnecessary. In case of ZFS and bcachefs, you also have native encryption, making LUKS obsolete.

    For typical desktop use: ext4 is totally fine. Snapshots are extremely convenient if something breaks and you can basically revert the changes back in a single command. They don’t replace a backup strategy, so in the end you should have some data security measures in place anyway.

    *Edit: forgot a word.

    • ReversalHatchery@beehaw.org
      link
      fedilink
      arrow-up
      12
      ·
      edit-2
      7 months ago

      In case of ZFS and bcachefs, you also have native encryption, making LUKS obsolete.

      I don’t think that it makes LUKS obsolete. LUKS encrypts the entire partition, but ZFS (and BTRFS too as I know) only encrypt the data and some of the metadata, the rest is kept as it is.

      https://openzfs.github.io/openzfs-docs/man/v2.2/8/zfs-load-key.8.html#Encryption

      Data that is not encrypted can be modified from the outside (the checksums have to be updated of course), which can mean from a virus on a dual booted OS to an intruder/thief/whatever.
      If you have read recently about the logofail attack, the same could happen with modifying the technical data of a filesystem, but it may be bad enough if they just swap the names of 2 of your snapshots if they just want to cause trouble.

      But otherwise this is a good summary.

    • rutrum@lm.paradisus.dayOP
      link
      fedilink
      English
      arrow-up
      4
      ·
      7 months ago

      Perhaps I’m guilty of good luck, but is the trade off of performance for reliability worth it? How often is reliability a problem?

      As a different use case altogether, suppose I was setting up a NAS over a couple drives. Does choosing something with COW have anything to do with redundancy?

      Maybe my question is, are there applications where zfs/btrfs is more or less appropriate than ext4 or even FAT?

      • aksdb@feddit.de
        link
        fedilink
        arrow-up
        10
        arrow-down
        1
        ·
        7 months ago

        For fileservers ZFS (and by extension btrfs) have a clear advantage. The main thing is, that you can relatively easily extend and section off storage pools. For ext4 you would need LVM to somewhat achieve something similar, but it’s still not as mighty as what ZFS (and btrfs) offer out of the box.

        ZFS also has a lot of caching strategies specifically optimized for storage boxes. Means: it will eat your RAM, but become pretty fast. That’s not a trade-off you want on a desktop (or a multi purpose server), since you typically also need RAM for applications running. But on a NAS, that is completely fine. AFAIK TrueNAS defaults to ZFS. Synology uses btrfs by default. Proxmox runs on ZFS.

        • 4am@lemm.ee
          link
          fedilink
          arrow-up
          14
          ·
          7 months ago

          ZFS cache will mark itself as such, so if the kernel needs more RAM for applications it can just dump some of the ZFS cache and use whatever it needs.

          I see lots of threads on homelab where new users are like “HELP MY ZFS IS USING 100% MEMORY” and we have to talk them off that ledge: unused RAM is wasted RAM, ZFS is making sure you’re running fast AF.

          • aksdb@feddit.de
            link
            fedilink
            arrow-up
            7
            ·
            7 months ago

            ZFS cache will mark itself as such, so if the kernel needs more RAM for applications it can just dump some of the ZFS cache and use whatever it needs.

            In theory. Practically unless I limit the max ARC size, processes get OOM killed quite frequently here.

          • MonkderZweite@feddit.ch
            link
            fedilink
            arrow-up
            5
            arrow-down
            1
            ·
            edit-2
            7 months ago

            unused RAM is wasted RAM

            In theory. But how it is implemented in current systems, reserved memory can not be used by other processes and those other processes can not just ask the hog to give some space. Eventually, the hog gets OOM-killed or the system freezes.

            • PixxlMan@lemmy.world
              link
              fedilink
              arrow-up
              1
              ·
              7 months ago

              Even when, as the comment says, the memory is marked as cache?

              Windows doesn’t have this problem

      • ReversalHatchery@beehaw.org
        link
        fedilink
        arrow-up
        3
        ·
        7 months ago

        are there applications where zfs/btrfs is more or less appropriate than ext4 or even FAT?

        Neither of them likes to deal with very low amounts of free space, so don’t use it on places where that is often a scarcity. ZFS gets really slow when free space is almost none, and nowadays I don’t know about BTRFS but a few years ago filling the partition caused data corruption there.

    • mcepl@lemmy.world
      link
      fedilink
      arrow-up
      4
      ·
      7 months ago

      ZFS is not really hip. It’s pretty old. But also pretty solid. Unfortunately it’s licensed in a way that is maybe incompatible with the GPL, so no one wants to take the risk of trying to get it into Linux. So in the Linux world it is always a third-party-addon. In the BSD or Solaris world though …

      Also ZFS has tendency to have HIGH (really HIGH) hardware/CPU/memory requirements.

      • bamboo@lemm.ee
        link
        fedilink
        arrow-up
        2
        ·
        7 months ago

        It was originally designed for massive storage servers (“zettabyte” file system) rather than personal laptops and desktops. It was before the current convergence trend too, so allocating all of the system resources to the file system was considered very beneficial if it could improve performance.

        • mcepl@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          6 months ago

          I haven’t meant it as the criticism of ZFS. It is just so, and perhaps there were good reasons for it. Now (especially with the convergence trend) it hurts.

      • aksdb@feddit.de
        link
        fedilink
        arrow-up
        23
        ·
        7 months ago

        It likely has an edge. But I think on SSDs the advantage is negligible. Also games have the most performance critical stuff in-memory anyway so the only thing you could optimize is read performance when changing scenes.

        Here are some comparisons: https://www.phoronix.com/news/Linux-5.14-File-Systems

        But again … practically you can likely ignore the difference for desktop usage (also gaming). The workloads where it matters are typically on servers with high throughput where latencies accumulate quickly.

      • flashgnash@lemm.ee
        link
        fedilink
        arrow-up
        6
        ·
        7 months ago

        Having tried NTFS, ext4 and btrfs, the difference is not noticeable (though NTFS is buggy on Linux)

        Btrfs I believe has compression built in so is good for large libraries but realistically ext4 is the easiest and simplest way to do so I just use that nowadays

        • Flaky@iusearchlinux.fyi
          link
          fedilink
          English
          arrow-up
          3
          ·
          7 months ago

          I had a pretty bad experience with the Paragon NTFS3 drivers a couple years ago. Basically the kernel hung, maybe from this, maybe not, but it ended up with filesystem corruption on my hard drives.

          Thankfully, Windows was able to fix it but until recently I relied on NTFS-3G. Paragon’s NTFS3 driver seems to be faring a lot better nowadays.

      • Auli@lemmy.ca
        link
        fedilink
        English
        arrow-up
        2
        ·
        7 months ago

        Going to be they or XFS. There was a benchmark of the different filesystems I heard about never found it though. It was recent and included bcachefs

      • noddy@beehaw.org
        link
        fedilink
        arrow-up
        2
        ·
        7 months ago

        I remember reading somewhere that btrfs has good performance for gaming because of deduplication. I’m using btrfs, haven’t benchmarked it or anything, but it seems to work fine.

  • Possibly linux@lemmy.zip
    link
    fedilink
    English
    arrow-up
    53
    arrow-down
    3
    ·
    7 months ago

    ZFS is a crazy beast that’s best for high end server systems with tiered storage and lots of RAM.

    ext4 is really just a basic file system. Its superior to NTFS and fat as it does have extra features to try to prevent corruption but it doesn’t have a large feature set.

    Btrfs is kind of the new kid on the block. It has strong protection against corruption and has better real world performance than ext4. It also has more advanced features like sub volumes and snapshots. subvolumes are basically virtual drives.

    Another few older options include things like XFS but I won’t go into those.

    List of filesystems: https://en.m.wikipedia.org/wiki/Comparison_of_file_systems

    • Lojcs@lemm.ee
      link
      fedilink
      arrow-up
      16
      arrow-down
      1
      ·
      7 months ago

      and has better real world performance than ext4

      Source? Most benchmarks I’ve seen it lags behind

        • Lojcs@lemm.ee
          link
          fedilink
          arrow-up
          7
          ·
          7 months ago

          Yes, but most filesystems are already optimized for flash storage. Arch wiki says f2fs is prone to corruption on power loss. Based on that and the lack of information on its anti-corruption measures I’m inclined to think it doesn’t have one and that’s why it’s faster. I wouldn’t use it in a non-battery operated device.

          • Pantherina@feddit.de
            link
            fedilink
            arrow-up
            2
            ·
            7 months ago

            So basically all laptop users can safely use it.

            Crazy how PC users rely on such a steady power supply. Arent there small UPS devices for a few seconds with auto shutdown?

            • Gabu@lemmy.ml
              link
              fedilink
              arrow-up
              2
              ·
              7 months ago

              Catastrophic battery failure isn’t really any less likely than catastrophic power supply failure (conceptually. If you use a brandless grey power supply, results may vary).

        • d3Xt3r@lemmy.nzM
          link
          fedilink
          arrow-up
          3
          ·
          edit-2
          7 months ago

          That link is for kernel 5.14, so I’d say those results are pretty much invalid for most users (unless you’re actually on it, or the 5.15 LTS kernel). There have been a ton of improvements in every filesystem since then, with pretty much every single kernel release.

          A more relevant test would be this one - although it talks about bcachefs, other filesystems are also included in it. As you can see, F2FS is no longer the fastest - bcachefs and XFS beat it in several tests, and even btrfs beats it in some tests. F2FS only wins in the Dbench and CockroachDB benchmarks.

            • d3Xt3r@lemmy.nzM
              link
              fedilink
              arrow-up
              2
              ·
              edit-2
              7 months ago

              Not quite. Bcachefs can be used on any drive, but it shines the best when you have a fast + slow drive in your PC (eg NVMe + HDD), so the faster drive can be used as a cache drive to store frequently accessed data.

  • duncesplayed@lemmy.one
    link
    fedilink
    English
    arrow-up
    30
    ·
    7 months ago

    The principled “old” way of adding fancy features to your filesystem was through block-level technologies, like LVM and LUKS. Both of those are filesystem-agnostic, meaning you can use them with any filesystem. They just act as block devices, and you can put any filesystem on top of them.

    You want to be able to dynamically grow and shrink partitions without moving them around? LVM has you covered! You want to do RAID? mdadm has you covered! You want to do encryption? LUKS has you covered? You want snapshotting? Uh, well…technically LVM can do that…it’s kind of awkward to manage, though.

    Anyway, the point is, all of them can be mixed and matched in any configuration you want. You want a RAID6 where one device is encrypted split up into an ext4 and two XFS partitions where one of the XFS partitions is in RAID10 with another drive for some stupid reason? Do it up, man. Nothing stopping you.

    For some reason (I’m actually not sure of the reason), this stagnated. Red Hat’s Strata project has tried to continue pushing in this direction, kind of, but in general, I guess developers just didn’t find this kind of work that sexy. I mentioned LVM can do snapshotting "kind of awkward"ly. Nobody’s done it in as sexy and easy way to do as the cool new COWs.

    So, ZFS was an absolute bombshell when it landed in the mid 2000s. It did everything LVM did, but way way way better. It did everything mdadm did, but way way way better. It did everything XFS did, but way way way better. Okay it didn’t do LUKS stuff (yet), but that was promised to be coming. It was Copy-On-Write and B-tree-everywhere. It did everything that (almost) every other block-level and filesystem previously made had ever done, but better. It was just…the best. And it shit all over that block-layer stuff.

    But…well…it needed a lot of RAM, and it was licensed in a way such that Linux couldn’t get it right away, and when it did get ZFS support, it wasn’t like native in-the-kernel kind of stuff that people were used to.

    But it was so good that it inspired other people to copy it. They looked at ZFS and said “hey why don’t we throw away all this block-level layered stuff? Why don’t we just do every possible thing in one filesystem?”.

    And so BtrFS was born. (I don’t know why it’s pronounced “butter” either).

    And now we have bcachefs, too.

    What’s the difference between them all? Honestly mostly licensing, developer energy, and maturity. ZFS has been around for ages and is the most mature. bcachefs is brand spanking new. BtrFS is in the middle. Technically speaking, all of them either do each other’s features or have each other’s features on their TODO list. LUKS in particular is still very commonly used because encryption is still missing in most (all?) of them, but will be done eventually.

  • AMDIsOurLord@lemmy.ml
    link
    fedilink
    arrow-up
    25
    arrow-down
    1
    ·
    7 months ago

    Using Btrfs you can do some pretty cool snapshotting: It’s basically like system restore of Windows but MUCH faster and pretty seamless. Even if you annihilate the whole operating system you can restore the snapshot and voila, have fun! It also has compression which can save some wear on SSDs and of course give you some more free™ storage space, which is cool [actual benefits depend on workload*]

      • AMDIsOurLord@lemmy.ml
        link
        fedilink
        arrow-up
        3
        ·
        7 months ago

        ZFS has almost everything ever conceived for filesystems lol it’s a whole ass volume manager and filesystem into one

    • jlow (he/him)@beehaw.org
      link
      fedilink
      arrow-up
      2
      ·
      7 months ago

      I wasn’t cool enough to figure out how to “just boot into a snapshot” when I tried btrfs a while ago. I mean I did figure it out (maybe?) but somehow the read/write rights where messed up and the snapshot couldn’t actually boot/I wasn’t able to log in +___+ Just reinstalled the system eith good old ext4. It sounds really cool, though …

      • AMDIsOurLord@lemmy.ml
        link
        fedilink
        arrow-up
        1
        ·
        7 months ago

        Well, sounds like a setup or distro issue. It should work without problems on Debian/Ubuntu/Mint. Linux Mint even really supports it as a setup-less default with TimeShift

    • Pantherina@feddit.de
      link
      fedilink
      arrow-up
      1
      ·
      7 months ago

      Do you know how I could split my default /var/home/user into /var/home/user/.var, /var/home/user/Torrents and the rest?

      Think that would be great for use with btrbk, when I find out how to use that.

      Damn BTRFS and btrbk need an easy GUI, I have the feeling its great for backups

      • AMDIsOurLord@lemmy.ml
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        7 months ago

        There’s no GUI, but following the wiki pages on BTRFS subvolumes you should be able to make a subvolume for those with like 2 simple commands (take a look at the man page for BTRFS subvolumes as well)

  • Björn Tantau@swg-empire.de
    link
    fedilink
    arrow-up
    22
    arrow-down
    1
    ·
    edit-2
    7 months ago

    I’ve started using BTRFS on my laptop with OpenSUSE and on my Steam Deck. It does two things for me, which I’m interested in. On OpenSUSE it does a snapshot before every system update. So if anything goes wrong I can easily roll back.

    On the Steam Deck I love the deduplication. It’s really great for a ton of Windows games that all need their own little “Windows” environment which amounts to a GB or two per game. With BTRFS I only use that space once.

    • rutrum@lm.paradisus.dayOP
      link
      fedilink
      English
      arrow-up
      10
      ·
      7 months ago

      Can you elaborate more on deduplication? Is this a feature you setup, or does it sort of work out of the box? This is a new concept to me, but sounds incredibly useful, especially in that scenario.

      • Björn Tantau@swg-empire.de
        link
        fedilink
        arrow-up
        13
        ·
        7 months ago

        I used a script that did everything for me, so I’m not 100 % sure. But as far as I know you enable the feature at mount time and then every time you copy something only a reference is copied until you actually do a change to the new or old file.

        For everything else a cronjob runs every week or so to search for unnecessary duplicates.

      • Discover5164@lemm.ee
        link
        fedilink
        arrow-up
        8
        ·
        7 months ago

        it’s not automatic since it will eat resources while it’s running. but it’s a feature of btrfs.

  • Christian@lemmy.ml
    link
    fedilink
    English
    arrow-up
    20
    arrow-down
    1
    ·
    7 months ago

    I know I’m not making a helpful contribution here, but I’ve been wondering about this stuff for a while myself and this thread has some great answers. Thanks for asking this OP.

  • jokro@feddit.de
    link
    fedilink
    English
    arrow-up
    20
    arrow-down
    2
    ·
    edit-2
    7 months ago

    btrfs = B-tree filesystem

    B-trees are a data structure.

  • lolcatnip@reddthat.com
    link
    fedilink
    English
    arrow-up
    17
    ·
    7 months ago

    ButterFS (btrfs…its actually “better” right?),

    I’m still waiting to find out who the BCA Chefs are.

  • callyral [he/they]@pawb.social
    link
    fedilink
    English
    arrow-up
    17
    arrow-down
    1
    ·
    7 months ago

    related question, although i don’t think it’s big enough for a post of its own.

    if i use btrfs subvolumes, does it mean that i can have one EFI partition and one root partition, and then subdivide the root partition using subvolumes? how would that work during the installation process? or is it done after installation?

    • mhz@lemm.ee
      link
      fedilink
      arrow-up
      6
      ·
      edit-2
      7 months ago

      One EFI + one ROOT partition is what I do on both my laptop and desktop for years, /home is a subvolume to my root partition. This setup suits my needs as I don’t have to worry about how big should my root or home (gaming) partition should be.

      I use Arch on my desktop and Opensuse on my laptop. They both have options to set up subvolumes from their installer, Debian does not, and I’m not sure about other distros, but you can always set that up after installation, just make your home partition the last one (after the root partition) so you can easily delete it after and grow the root partition without much blocks relocation.

      • Daniel Quinn@lemmy.ca
        link
        fedilink
        English
        arrow-up
        4
        ·
        edit-2
        7 months ago

        I’ve never heard of sub volumes. What do they do for me? Why not just partition the disk or store everything on the one partition?

        • mhz@lemm.ee
          link
          fedilink
          arrow-up
          5
          ·
          7 months ago

          I like to think a subvolume is a directory on my filesystem that:

          • Acts as an independent filesystem.
          • Shares it’s parent size (unless quotas are set in place)
          • Can be mounted/unmounted any time
          • Excluded from their parent partition’s snapshots. (a /home subvolume is exluded from / snapshots).
          • Can be snapshot-ed independently.

          This is by no mead a definition for BTRFS subvolume, but I hope you get the idea.

      • callyral [he/they]@pawb.social
        link
        fedilink
        English
        arrow-up
        3
        ·
        edit-2
        7 months ago

        I already have a partition layout in btrfs where I have a /home and a /root partition, since when I installed I didn’t know about btrfs subvolumes. I use Void Linux and I think it’s after installation, since I don’t remeber having a subvolumes step during the installation.

        I’ll make sure to remind about btrfs subvolumes in case I reinstall. There’s a btrfs program that has a subvolume argument, so I’m guessing that’s what I could use.

        usage: btrfs [global]  [...]  []
        
        ...
        Command groups:
          subvolume         manage subvolumes: create, delete, list, etc
        
    • Lupec@lemm.ee
      link
      fedilink
      arrow-up
      4
      ·
      7 months ago

      Pretty much, yeah. At some point I remember the recommendation being having a separate /boot as well due to incompatibilities with GRUB’s save default option iirc, not sure that’s a thing anymore.

      Anyway, you usually set that up during the install process, although I’m not sure graphical installers let you handcraft btrfs subvolume mount points or even select them as such these days. Last I checked at least they either just used a default layout (@ and @home with Ubuntu, for instance) or treated it as a single volume with no further options.

    • RustyNova@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      7 months ago

      Exactly. But if you tend to be on the hoarder side, put a swap partition in there too. Even 32GB ram isn’t enough sometimes

  • ReversalHatchery@beehaw.org
    link
    fedilink
    arrow-up
    14
    ·
    7 months ago

    ext4 certainly has its place, it’s a fine default file system, there’s really no problems with it.

    But others, like ZFS and BTRFS, have features that you may want to use, but ext4 doesn’t do: fs snapshots, data compression, built in encryption (to a degree, usually only happening for data and some of the metadata, so LUKS is often better IMHO), checking for bitrot and restoring it when possible (whether it is depends on your config), quotas per user group or project, spanning multiple disks like with RAID but safer (to a degree), and others.

  • Chris@feddit.uk
    link
    fedilink
    English
    arrow-up
    8
    ·
    7 months ago

    I use f2fs on my Raspberry Pis, it’s designed for flash storage and appears to have much better performance than ext4 on the same device. I’m not sure whether it’s suitable for SSDs, or just SD cards and USB (these devices are optimised for FAT and f2fs utilises that optimisation). When I tried to use f2fs on a proper laptop it was too early and the distro didn’t support booting from it. I assume that has changed now.

    As for the others, I usually stick with ext4 as I’ve never seen a compelling reason not to.

    • Chewy@discuss.tchncs.de
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      7 months ago

      Interesting. f2fs supports file-based encryption and compression. It is designed for flash and is used for many smartphones.

      • Chris@feddit.uk
        link
        fedilink
        English
        arrow-up
        1
        ·
        7 months ago

        What I missed mentioning is it does wear-levelling so as its name suggests it is “flash friendly” and stops SD cards wearing out so quickly.

        • ferret@sh.itjust.works
          link
          fedilink
          English
          arrow-up
          2
          ·
          edit-2
          7 months ago

          I don’t believe this is true. F2FS is still meant for use on devices with a FTL (flash transition layer) meaning that the device is doing wear leveling itself and a filesystem doing it twice is redundant and counter-productive. The flash-friendly part is referring to other filesystem features (there are many)

          • Chris@feddit.uk
            link
            fedilink
            English
            arrow-up
            2
            ·
            7 months ago

            I bow to your superior knowledge. It definitely doesn’t wear out SD cards as quickly though, but that might be due to other factors not wear levelling.

  • Papamousse@beehaw.org
    link
    fedilink
    arrow-up
    6
    ·
    edit-2
    7 months ago

    After using ext4 for yyyeeeaaaarrrrrsss, when I upgraded my MX21 to MX23 I used btrfs, with subvolumes, especially for easy backup/snapshot/timeshift.

    Just at install, super easy, create a small ext4 boot partition on the SSD, then a big LUKS partition, format with btrfs, create subvolumes for / /home /var /swap and that’s it. No hassle with sizing correctly.

    btrfs seems pretty stable. I see no diff in performance compared to ext4 because my application are not that dependant to FS speed, and with SSD anyway?

    oh yeah, built-in compression too!

  • Cwilliams@beehaw.org
    link
    fedilink
    arrow-up
    3
    ·
    7 months ago

    Not sure about the other ones, but I use Btrfs because of subvolumes and backups.

    Subvolumes are like special folders inside of your partition that mount separately. Ex. In my btrfs partition, I have a @home partition that is mounted to /home

    This makes it easier to choose what you are backing up, because you can say, “just copy everything in @home to the backup location”

    If I got any of that wrong, feel free to correct me!

    • ZephrC@lemm.ee
      link
      fedilink
      arrow-up
      2
      ·
      7 months ago

      I mean, is it actually easier to copy everything in @home than it is to copy everything in /home? Btrfs has always kinda felt like it’s a bunch of extra steps to solve problems I don’t have.

      • mindfive@lemm.ee
        link
        fedilink
        arrow-up
        3
        ·
        7 months ago

        Kinda. You can copy your snapshots from @home too, meaning a restore from backup also restores your local file version history. There are also tools to push snapshots around as a large archive instead of dealing with smaller files directly.

        The COW can also reduce the chances of running rsync on a large file that is currently being accessed, and getting a partial file in your backup. Or I suck at rsync 🤷‍♂️

        • Chewy@discuss.tchncs.de
          link
          fedilink
          arrow-up
          2
          ·
          edit-2
          7 months ago

          You’re right, atomic snapshots are a big advantage of CoW fs.

          Rsync backups done while the system is running have a chance of being broken, while CoW fs snapshots are instant and seem basically as if the system suddenly lost power.

      • anothermember@beehaw.org
        link
        fedilink
        arrow-up
        1
        ·
        7 months ago

        The real power for btrfs for me is incremental backups; you can take a snapshot of your home partition and send it to a backup device, then you can take a second snapshot a week later and just send the differences between them. I do my weekly backups like this. You can keep many multiple snapshots to roll back if needs be since only the differences between snapshots take up space. This is the tutorial that got me started.

        • ZephrC@lemm.ee
          link
          fedilink
          arrow-up
          1
          ·
          7 months ago

          Yeah, alright, I see how that could be useful for someone who isn’t me. I don’t have much that’s important on my computer, and for what little there is I just have a second ssd I drag and drop it onto. That one has Mint installed on it in case I do something stupid to my main drive, because I routinely do stupid things to my main drive.

          • anothermember@beehaw.org
            link
            fedilink
            arrow-up
            2
            ·
            7 months ago

            I suppose it depends on how much stuff you have, doing a full back up of my home every week is too time consuming to be practical but takes a couple of minutes with this method.

            Keeping multiple past snapshots is overkill for me but I do it because I can, more-or-less. It would be useful if I accidentally delete a file and only remember it months later.