Finally ready to switch my final windows device over to linux, but I'm running into a problem. NTFS drives aren't a good idea under Linux, but my 4 NTFS drives are this full. I own zero extra hard drives, and do not want to spend $300 on another one.

How can I bring these files into Bazzite WITHOUT just wiping everything and re-downloading 10+ terabytes of movies, shows, music, games, and other data I refuse to delete?

you are viewing a single comment's thread
view the rest of the comments
[–] [S] 3 points 3 days ago (2 children)

Is there an advantage to btrfs for gaming? Idk if bazzite does compression or not, but should that be on or off?

  • source
  • parent
  • hideshow 4 child comments
  • [–] 4 points 2 days ago* (last edited 2 days ago)

    No advantage over, say, ext4. I mentioned it because it is a good filesystem and bazzite chooses it by default so you probably have it. Also it has the best name.

    You can check if compression if enabled by checking the contents of the fstab file (cat /etc/fstab in the terminal). It will say something like compression=zstd. It will likely be enabled.

    There is no disadvantage to having compression on. These compression algorithms are designed to be used on the fly and are very fast. The overhead on a mildly modern system is imperceptible.

    Whether you get mileage out of it is another matter. At a previous job I saw 20% reduced space usage on a postgres machine. On my laptop however the same stat is just 1%. It depends on the kinds of files you have.

  • source
  • parent
  • [–] 2 points 2 days ago*

    Compressing something already compressed is pointless. So like emails or source code compress well, but video, audio or game assets do not at all basically. So doesn't matter for those things whether you have it enabled, and the overall percentage of uncompressed stuff on your drive is probably rather low, and mostly very small files.

    I think the CPU overhead should be very small, but I haven't tried it myself. Plus if you actually have something that compresses well, it should actually be faster to access because you're almost certainly not CPU-limited, but rather limited by the read/write speed of the disk.

  • source
  • parent