this post was submitted on 20 Jan 2025
24 points (90.0% liked)
Linux Gaming
15884 readers
126 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
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.