this post was submitted on 20 Jan 2025
25 points (90.3% liked)
Linux Gaming
16072 readers
210 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
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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.
The issue was indeed from the fstab. But it was because exec was specified before users.
Late to reply, but you should just leave it as
defaults,noatime,nofail
. From the mount man page,defaults
already impliesrw,suid,dev,exec,auto,nouser,async
.EDIT: change it to
rw,suid,dev,nouser,exec,auto,async,noatime,nofail
actually, anything after defaults overrides the options specified by that.