I’m using EndeavourOS with ext4 file system for daily usage and a dual bootable Windows for gaming. What I want to have right now is getting rid of Windows completely.

When I tried it before, I had to try multiple tweaks for a game and find which one worked on Linux. Therefore, I want to take a snapshot with BTRFS and try it until I find the right configuration.

While I have quite a bit of experience with Linux, I’ve never used BTRFS. Do you think it’s worth it?

I thought about keeping the games on the ext4 system, but I hate splitting the disk. I’m thinking of keeping the games in a non-snapshot volume.

UPDATE: I just re-installed EndeavourOS with BTRFS + snapper + BTRFS Assistant :)

  • Keegen
    link
    fedilink
    English
    3813 days ago

    I use Fedora which defaults to BTRFS and never once had an issue with any game because of it. Your file system shouldn’t matter for gaming at all so long as you stay on Linux native ones and avoid NTFS Windows drives.

    • @Trail@lemmy.world
      link
      fedilink
      English
      413 days ago

      My Linux stream library is on Ntfs, for theoretical compatibility purposes with Windows which I never boot any more anyway, but generally I have had zero problems apart from an issue with Dota 2 a few years ago where I had to symlink some folder. But I don’t think think it is needed anymore.

      • Keegen
        link
        fedilink
        English
        213 days ago

        Good to know the situation with cross compatibility has improved! I just saw enough posts of people having issues with a shared Windows/Linux NTFS drive over the years to advice against that setup.

    • @isoOPA
      link
      English
      4
      edit-2
      13 days ago

      I was worried about the possible high overhead of CoW in BTRFS. I guess it won’t cause much of a problem. Thank you 🙏

      • Keegen
        link
        fedilink
        English
        1413 days ago

        Unless you’re making hundreds of snapshots with massive changes between each it won’t matter. It might matter if you plan to use spinning rust as your main drive, but I imagine you’ll be using an SSD.

      • Rolivers
        link
        fedilink
        English
        312 days ago

        I think you mean having to mount the subvolumes instead of the partition itself.

        This can be done by mount -o subvol=whatever /btrfspartition /mountpoint

        After having done that it’s the same.

      • Keegen
        link
        fedilink
        English
        013 days ago

        I don’t know? It’s been a long time since I used Arch, and besides OP is using EndeavourOS so it won’t matter.

          • Keegen
            link
            fedilink
            English
            613 days ago

            Yeah but when is that gonna matter? It uses a graphical installer so you won’t need to touch the arch-chroot command at all. And if for some reason you do, the Arch wiki is there for you.

            • @Petter1@lemm.ee
              link
              fedilink
              English
              013 days ago

              Sure, I had chosen ext4 because it was unnecessary complicated with btrfs and I don’t do snapshots (all my data is in my private cloud, so I don’t loose data if I reinstall my linux)

              • Keegen
                link
                fedilink
                English
                213 days ago

                Great, good for you. But what’s your point? OP explicitly said they have a specific use case for BTRFS and just wanted to know if there are any specific issues related to gaming with it. arch-chroot being slightly different with that filesystem is not an issue for 99% of EndeavourOS users.

                • @Petter1@lemm.ee
                  link
                  fedilink
                  English
                  0
                  edit-2
                  13 days ago

                  Lol, OK, just wanted to point out the difference I approached, no need to feel attacked, damn…

  • @pHr34kY@lemmy.world
    link
    fedilink
    English
    2913 days ago

    Btrfs is amazing for a steam library. The single best feature is the compression. Games tend to have lot of unoptimized assets which compress really well. Because decompression is typically faster than your disk, it can potentially make games load faster too.

    I put a second dedicated nvme drive in my PC just for steam. It’s only 512GB but it holds a surprisingly large library.

    • @apt_install_coffee@lemmy.ml
      link
      fedilink
      English
      913 days ago

      I actually found the opposite with my steam library; on ZFS with ZSTD I only saw a ratio of 1.1 for steamapps, not that there’s really any meaningful performance penalty for compressing it.

      • @sparr@lemmy.world
        link
        fedilink
        English
        913 days ago

        It depends on what sort of games you play. Some games / genres / publishers are much worse about this than others.

      • @pHr34kY@lemmy.world
        link
        fedilink
        English
        3
        edit-2
        11 days ago

        OK I just measured mine. I have 459GiB of games on the drive, consuming 368GiB of space. That’s about 25% compression. I’m using compress=zstd:9.

        I should try deduplication. I have 4 steam users and I’ve created an ACL hell to prevent the same game being downloaded and installed twice.

        • @apt_install_coffee@lemmy.ml
          link
          fedilink
          English
          18 days ago

          If you’re messing with ACLs I’m not sure deduplication will help you much; I believe (not much experience with reflinks) the dedup checksum will include the metadata, so changing ACLs might ruin any benefit. Even if you don’t change the ACLs, as soon as somebody updates a game, it’s checksum will change and won’t converge back when everyone else updates.

          Even hardlinks preserve the ACL… Maybe symlinks to the folder containing the game’s data, then the symlinks could have different ACLs?

          • @pHr34kY@lemmy.world
            link
            fedilink
            English
            2
            edit-2
            8 days ago

            I wrote a blog about it last year with my method of deduplicating. I really need to update that bit because steam keeps writing files that don’t uphold the group permissions, and others get permission errors that need to be fixed by admin. Steam also failed to determine free space on a drive when symlinks were involved.

            I even found recently that steam would write files in /tmp/ as one user, and fail when you logged in as another user and tried to write the same file. Multi-user breaks even without messing around.

            My current solution doesn’t use symlinks. I just add two libraries for each user. One in their respective home directory, and another shared in /mnt/steam. It means that any user can update a game in /mnt/steam, and it cleanly updates for all users at once.

    • Victor
      link
      fedilink
      English
      513 days ago

      Is the compression opt-in or is it enabled by default?

        • Victor
          link
          fedilink
          English
          113 days ago

          Ah okay, cool. It’s that easy? Does it compress all existing data after that or is it only for new data?

          What would I have to do to compress existing data?

          • @manifesto7473@lemmy.ml
            link
            fedilink
            English
            613 days ago

            It is only for new data.

            For example, you would have to defragment your filesystem again with btrfs filesystem defragment -r -v -czstd /. Where zstd is an algorithm and /, a root path. With this command, the default compression level will be used, which is level 3.

            Be careful, defragmenting the btrfs file system will/can duplicate the data.

            As for a mount point, if you decided to use zstd algorithm with level 1 compression, just add the compress=zstd:1 or compress-force=zstd:1 to the mount options (fstab or while mounting manually)

            • @MonkderDritte@feddit.de
              link
              fedilink
              English
              2
              edit-2
              12 days ago

              Reading the manpage (btrfs-filesystem), duplication can happen on some odd kernel versions, so no danger.

              Edit: that was my interpretation of breaking up reflinks of cow data anyway. Seems there’s more.

            • ThePancakeExperiment
              link
              fedilink
              English
              112 days ago

              So I set up my system with btrfs in the last days and I converted two external drives (from ext4) (mainly game) and run defrag and balance, because it was mentioned in a guide to compress the existing files. Was that a bad idea? Didn’t read anything about duplicates.

  • @stebator@lemmy.world
    link
    fedilink
    English
    12
    edit-2
    13 days ago

    BTRFS is worth it. It’s a bit faster than ext4. And with BTRFS assistant or snapper, you can configure automatic snapshots of your OS partition. And grub-btrfs will allow to integrate them to the boot menu. Once you are booted via snapshot, there is a way to replace / file system with that snapshot permanently, or you can boot to another one.

    And remember, snapshots in BTRFS is just a formal thing, use them only if you specifically need their features, like read only sub volumes. If you just need to backup some directory, for example with steam games, no need to do the actual snapshot. You can easily backup large amount of data with just cp -dr dir dir_backup no matter how large is it, it will be done immidetelly and without taking additional space.

  • N3Cr0
    link
    fedilink
    English
    1013 days ago

    BTRFS works great across all my drives under Nobara. Same applues when I access these drives from Ubuntu.

    Steam also has no issues in my case. Even wine works line Intended.

  • Rolivers
    link
    fedilink
    English
    8
    edit-2
    10 days ago

    I’ve always used BTRFS with rolling release distros like Arch or Tumbleweed and never had an issue with the filesystem.

  • @Dudewitbow@lemmy.zip
    link
    fedilink
    English
    213 days ago

    iirc Garuda Linux defaults to it, and is gaming focused distro of arch. Whether its worth it is up to you, but there are already users who daily drive it that way.