2025-02-04, 06:52 PM
If this USB drive was auto mounted, you would need to remove the ACL on /media/yourUsername
Replace with your actual user name, obviously. Once you've done the commands above, Jellyfin should be able to access your media.
Code:
sudo setfacl -b -R /media/yourUsername
sudo find /media/yourUsername -type d -exec chmod 755 {} \;
sudo find /media/yourUsername -type f -exec chmod 644 {} \;
Replace with your actual user name, obviously. Once you've done the commands above, Jellyfin should be able to access your media.