this post was submitted on 20 Jan 2025
23 points (89.7% liked)

Linux Gaming

15795 readers
127 users here now

Discussions and news about gaming on the GNU/Linux family of operating systems (including the Steam Deck). Potentially a $HOME away from home for disgruntled /r/linux_gaming denizens of the redditarian demesne.

This page can be subscribed to via RSS.

Original /r/linux_gaming pengwing by uoou.

Resources

WWW:

Discord:

IRC:

Matrix:

Telegram:

founded 2 years ago
MODERATORS
 

I finally took the time to move my gaming rig to Bazzite because I don't boot it that often, and because I don't want to spend half the little time I have for gaming doing updates and maintenance.

Most of my games are on an ext4-formatted secondary drive. Note: They worked perfectly on Manjaro and Nobara, the previous distros I used on this machine.

They are recognized by Steam, I can install and uninstall games just fine, it's just that... they don't launch. At all. Native or Proton. Like if I was on an exFAT partition. The "Launching" button switches back to "Play" almost instantly. If I move a game to my main home partition, it launches fine.

Has anyone encountered this issue before?

Where/how could I get detailed logs to try and pinpoint the issue?

Thanks!

Edit: Solved! The issue was with fstab configuration, always specify exec AFTER users, despite the doc telling you that order doesn't matter ;)

Wrong fstab entry :

UUID=blah-blah-blah /my/mount/point ext4 defaults,noatime,nofail,auto,exec,users,rw 0 2

Proper fstab entry (it's subtle):

UUID=blah-blah-blah /my/mount/point ext4 defaults,noatime,nofail,auto,users,exec,rw 0 2

top 14 comments
sorted by: hot top controversial new old
[–] kugmo@sh.itjust.works 1 points 19 hours ago (1 children)

I assume your drive in fstab (or systemd mount, whatever your setup is using) has the 'defaults' permission option? If it doesn't that may be why games aren't launching. Also exFAT doesn't have the proper Unix permissions to launch games iirc.

[–] wfh@lemm.ee 3 points 16 hours ago

The issue was indeed from the fstab. But it was because exec was specified before users.

[–] MentalEdge@sopuli.xyz 8 points 1 day ago* (last edited 1 day ago) (2 children)

Another person already linked to how to get proton to spit out logs, but you can also start steam from a terminal, which then lets you see what error messages steam itself might be spitting out when you try to run a game.

Just close steam, open a terminal window, and type in "steam".

[–] mox@lemmy.sdf.org 3 points 1 day ago (1 children)

Last time I checked, Proton logs included things that did not appear in normal terminal output, so you might want to do both. (That was years ago, though; things might have changed since then.)

[–] MentalEdge@sopuli.xyz 1 points 1 day ago

Absolutely, these are two entirely different logs.

[–] wfh@lemm.ee 1 points 1 day ago

Good call. I'm seeing some stuff I don't like, I'll investigate tomorrow.

[–] mox@lemmy.sdf.org 5 points 1 day ago (1 children)
[–] wfh@lemm.ee 1 points 1 day ago

The games crash long before launching proton. I suspect something is fishy in the runtime or even before that.

Have you changed the steam setting that is should use proton for all games? You can find it under the compatibility in your settings, just choose proton experimental, that should work for most games.

[–] that_leaflet@lemmy.world 1 points 1 day ago

I’ve seen an unusual number of posts recently from people on Fedora having issues with the rpmfusion version of Steam. Maybe something is broken with it.

[–] sgibson5150 1 points 1 day ago (1 children)

That's weird with a beard. I've run games off a secondary drive in Bazzite with both ext4 and btrfs. Hope you figure it out.

[–] wfh@lemm.ee 2 points 1 day ago (1 children)

Worst case scenario, I have to nuke this drive and start over. I'll keep digging tho.

[–] sgibson5150 1 points 5 hours ago (1 children)

Wow that IS subtle. Nice job figuring that out.

I'm used to using fstab too but in my new box build, I finally went through the exercise of figuring out how to mount via systemd for the first time. Seems to work fine and is slightly less arcane. Slightly.

[–] wfh@lemm.ee 2 points 5 hours ago

Haha thanks !

I would like to say I'm used to fstab too but honestly I barely have to use it once every five years 😅