Garuda saves casual gamer from Windows horrors

Hello!

I’m new to Garuda, but not totally new to Linux. I’ve been playing around with Linux for the past 10+ years, but I couldn’t change to Linux because I’m a gamer (casual one but still). I’m more familiar with Ubuntu and Linux Mint, and I wouldn’t say those are gamer friendly. I am also not super confident with Konsole. I can use it, but I’m just super paranoid I’ll mess something up :persevering_face:

When I found Garuda, it was love at first sight :heart_eyes: The reviews were excellent, most of my games were reported to work without extra tinkering, so I didn’t have an excuse not to switch anymore. I tested some distros in VirtualBox on my Windows so I could actually see what each distro looked like, and “get the vibes” as the kids these days say (I think :old_woman:). I was debating between Bazzite and Garuda due to this video, but decided to go with Garuda because (to be honest) it’s prettier and dragons :dragon_face:

I had an extra empty HD, so I decided to go with dual boot, just in case I would need Windows for some reason. I had some trouble with installation due to BIOS and Windows settings (is anyone surprised :unamused_face:), and the boot software I was using for installation. I finally tried using Ventoy (I was hesitant because I was not familiar with it), and after that, it couldn’t have been easier. Almost everything has been working perfectly since then ( :crossed_fingers: so I don’t jinx it).

Only issues I have had have been self-inflicted :sweat_smile: I tried moving some of my saved games from Windows, and I somehow messed it up and had to do additional troubleshooting. TL;DR is: Game wouldn’t start, “fixed” it; Steam wouldn’t start, panic. I was finally able to actually fix it, but I didn’t try to restore the saved games anymore. I read somewhere that the issue might be that my Steam library is on NTFS HD (which apparently is a big no-no). The next task is to move all the files (1TB) from that HD to somewhere else temporarily and format it.

I also almost always seem to fail with pacdiff files, but luckily, those have just been mirror lists, and I have been able to fix them manually later.

I’m a little bit embarrassed to say that my saving grace with all these issues has been Google Gemini :see_no_evil_monkey: I’m sure I would have been able to find ways to fix these issues just with normal Google-Fu, but it would have taken me days, if not weeks.

I’ve been using Garuda for about a month, and I will never go back.

Also, the community and the team here in the forum seem super nice, so maybe next time I dare to ask for help here instead of AI. :grin:

P.S. Apologies for over use of emojis, I can’t help myself :owl:

8 Likes

Welcome :slight_smile:
I am not a man of many words, as long as it is not my mother tongue :wink: therefore

:slight_smile:

:wink:

4 Likes

Akchewally (just being silly), if you mount your NTFS volume with “exec” parameters in fstab, you can absolutely install and run games on this volume. Here’s an example of my ntfs volume in /etc/fstab:

UUID=XXXXXXX     /mnt/win-c   ntfs3   user,rw,nosuid,nodev,relatime,exec,uid=XXXX,gid=XXXX,iocharset=utf8,uhelper=udisks2,dmask=022,fmask=133,x-systemd.automount  0 0

That said, sometimes if reboots/shutdowns aren’t graceful and don’t unmount NTFS properly - it can cause a dirty bit to be applied to the drive and then it won’t mount - but this is easily fixable with linux-ntfs-tools (see here: https://www.reddit.com/r/archlinux/comments/11qezjd/correctly_checking_ntfs_partitions_dont_use/). According to this article, Paragon, who supplied the kernel support for RW NTFS volumes, kinda borked the ntfsfix tool, and all it does is clear the bit, without actually fixing the drive. They used to include the chkntfs utility in one of their Android APKs, which included x86-compiled binaries of the tool, which you can extract from the APK and use in linux. I’ve personally used this and can confirm it works as well as if you rebooted back into Windblowz and used the native disk repair. If you need help finding/getting the binaries out of the APK, lemme know.

1 Like