this post was submitted on 27 May 2025
47 points (100.0% liked)
Opensource
2763 readers
503 users here now
A community for discussion about open source software! Ask questions, share knowledge, share news, or post interesting stuff related to it!
⠀
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
And yet I have to jump through a thousand hoops before my drives will mount on boot.
I was just adjusting my fstab today... Genuinely blows my mind how far Linux has come and I still have to delve into hard to read text files to open my damn drive when I boot my computer.
All fstab does is provide data for the
mount
command. Typically your OS just runs something likemount -a
on boot and it mounts all the filesystems as listed in the fstab.You can just run a mount command for your drive on startup as root. It would be doing essentially the same thing and its quite simple even for a new CLI user.
I forgot about this, but AFAIK you're still better off with fstab to give yourself all permissions for everything to work properly.