You are not logged in.
I have an internal disk mounted at `/run/media/hdd`. I am trying to get Jellyfin to access the folder "movies" on that disk.
```
$ sudo groupadd media
$ sudo usermod -aG media jellyfin
$ sudo usermod -aG media keiljr
$ sudo chmod -R 775 /run/media/hdd/movies
$ sudo chown :media /run/media/hdd/movies
```
So far, this has not worked. Any ideas?
----------
Issue resolved! Permissions needed to be set on the directory for the disk. The following commands are now corrected.
```
$ sudo groupadd media
$ sudo usermod -aG media jellyfin
$ sudo usermod -aG media keiljr
$ sudo chmod 775 /run/media/hdd
$ sudo chmod -R 775 /run/media/hdd/movies
$ sudo chown :media /run/media/hdd
```
Last edited by quietcornerlinux (2024-10-14 13:08:06)
Offline
do jellyfin have +x access (and maybe +r?) for all the folders above this?
what is the error jellyfin show when you add the folder to a library?
Offline
The default Jellyfin user is jellyfin and not Jellyfin.
Offline
The default Jellyfin user is jellyfin and not Jellyfin.
That was a spelling error on this post, not my system. I corrected it in the original post. Thank you.
Offline
do jellyfin have +x access (and maybe +r?) for all the folders above this?
what is the error jellyfin show when you add the folder to a library?
I resolved the issue by taking your advice. `/run/media/hdd` needed proper permissions as well. Directories further up the tree can stay as the default settings of 755 and root:root. I will update my original post to reflect such.
Offline