this post was submitted on 23 Aug 2026
58 points (100.0% liked)

technology

24446 readers
305 users here now

On the road to fully automated luxury gay space communism.

Spreading Linux propaganda since 2020

Rules:

founded 6 years ago
MODERATORS
 

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
[–] ksynwa@lemmygrad.ml 7 points 1 day ago (1 children)

For audio and video content NTFS will work alright.

For games you should use a linux native filesystem like ext4 or btrfs. Bazzite itself will warn you about this if you plug in an NTFS drive.

The last tried I installing fitgirl was years ago and it did not work. I have seen people on reddit say that her installers work under proton but I have never been able to replicate it. I have taken to downloading pre-installed repacks or clean steam files and cracking them myself. On cs.rin, repackers like rexagames or astralgames will post suck repacks. You are supposed to just unzip and run these repacks. There is a significant downside to this that these repacks are not usually distributed via torrent so you need to download them from file hosting websites. But it works at least. I have been pirating the shit out my steam deck this way.

[–] EmmaGoldman@hexbear.net 4 points 1 day ago (2 children)

So I can't just download ISOs from my private tracker anymore?

[–] imogen_underscore@hexbear.net 2 points 15 hours ago

uncompressed shit like that is ideal actually and should work fine, I've had issues with fit girl on Linux i think due to her uncompressing tool

[–] ksynwa@lemmygrad.ml 3 points 1 day ago (1 children)

Those isos from scene releases have a higher chance of working. Their setup wizards are simpler and should work under wine. I have used updates from RUNE and such and they worked fine. Fitgirl's installer doesn't work probably because of the decompression it does.

The important thing is to install the games on ext4 or btrfs because the read performance from NTFS is kinda bad. So while NTFS will work for audio-video, games don't work well on it.

[–] EmmaGoldman@hexbear.net 3 points 1 day 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?

[–] trompete@hexbear.net 2 points 23 hours ago* (last edited 23 hours 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.

[–] ksynwa@lemmygrad.ml 4 points 1 day ago* (last edited 1 day 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.