this post was submitted on 28 Jan 2026
14 points (100.0% liked)
Linux
61722 readers
318 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Since you can run the apps (glitchy as they may be), nothing is wrong with the read perms on the drive. Maybe write perms or exec perms? But ntfs perms don't map neatly onto POSIX perms, so it's hard to say. Maybe try setting the gid to the
vboxusergroup id and see if that helps?You might also check out the
mountmanpage and look at the section about "Generic Mount Options"; this is the more in-depth explanation of the "options" column infstab, and thedefaultsoption (which depends on the distro) can hide stuff likenouser, which prevents users from mounting the drive.Finally, look into ACLs and how to manage those for interoperability across Windows and POSIX systems.
Best case scenario, fixing it so your user has all access to the drive with the
user,execoptions fixes your issues. Otherwise, you've just gotta do the learning about ACLs and POSIX permsThanks for replying, it looks like I've got some homework to do :D
I did look at the fstab page, but I didn't understand enough to get an answer. I'll look at the mount page tonight, thank you :)