2024-08-21, 03:00 PM
(This post was last modified: 2024-08-21, 03:04 PM by TheDreadPirate. Edited 2 times in total.)
The jellyfin user doesn't have permissions to this folder nor any of the child folders.
drwxrwx--- 7 jermaine jermaine 4096 Aug 9 20:21 /mnt/a04be9b4-8742-46fd-9f67-efc43a67b9fb
Run this command
Your other option is to change the group owner to jellyfin.
And for the individual files, only your user can read them.
drwxrwx--- 7 jermaine jermaine 4096 Aug 9 20:21 /mnt/a04be9b4-8742-46fd-9f67-efc43a67b9fb
Run this command
Code:
sudo chmod o+rx -R /mnt/a04be9b4-8742-46fd-9f67-efc43a67b9fb
Your other option is to change the group owner to jellyfin.
Code:
sudo chgrp -R jellyfin /mnt/a04be9b4-8742-46fd-9f67-efc43a67b9fb
And for the individual files, only your user can read them.
Code:
sudo find /mnt/a04be9b4-8742-46fd-9f67-efc43a67b9fb -type f -exec chmod og+r {} \;