2024-10-18, 01:33 AM
(2024-10-17, 11:29 PM)mjpatey Wrote: By the way, here's the line I added to /etc/fstab:
Code:UUID=(xxx) /media/(username)/(drivename) exfat defaults 0 0
Move your mount out of /media/username. That directory almost certainly has an ACL on it preventing Jellyfin from accessing it. You COULD remove the ACL, but Linux will mount all of your other removable storage in this directory. To prevent any naming collisions, you should be mounting permanent storage elsewhere. Directly in /media or /mnt are the most common locations.
Code:
UUID=(xxx) /media/(drivename) exfat defaults 0 0
Or
Code:
UUID=(xxx) /mnt/(drivename) exfat defaults 0 0