![]() |
SOLVED: Cannot find media folder - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +---- Forum: Media Scanning & Identification (https://forum.jellyfin.org/f-media-scanning-identification) +---- Thread: SOLVED: Cannot find media folder (/t-solved-cannot-find-media-folder) |
Cannot find media folder - a_guazu - 2025-03-03 So I know that there are a lot of posts about jellyfin having access to the path to media, but I have tried all kinds of combinations of chown, chmod and cannot find a solution. I have a fresh install of debian and installed jellyfin with the apt-get command. The media is located at /media/(myusername)/X9 Pro. X9 Pro is my external SSD that contains all of the media. Right now in jellyfin when I click add folder jellyfin can see /media/(myusername) but it cannot see the SSD. I thought that it might be an exfat issue so I tested with another usb stick formated to ext4, but it still could not find it after attempting to set the correct permissions. Does anyone have any insights? Am I mounting the SSD at the wrong point? I don't know very much about computers so sorry if I haven't given all of the relevant information. Thanks. RE: Cannot find media folder - TheDreadPirate - 2025-03-04 There is likely an ACL on that directory, which overrides basic Linux permissions. Code: sudo setfacl -b -R /media/(myusername) https://forum.jellyfin.org/t-mounting-local-storage-in-linux-linux-permissions-primer RE: Cannot find media folder - a_guazu - 2025-03-05 I have successfully run the command, but jellyfin still only sees media/(myusername) and cannot go further down the path. The drive is exfat, does it need to be ext4? Thank you for your time. RE: Cannot find media folder - TheDreadPirate - 2025-03-06 exFAT does not support Linux permissions so you would need to re-mount the drive manually (instructions in my walkthrough I linked) and set a more open umask to allow other users to access it. But converting it to ext4 would make things much easier in the long run since you could just use plain Linux permissions to control access. RE: Cannot find media folder - a_guazu - 2025-04-18 I followed the instructions and everything worked fine, thanks so much. One thing I did differently was instead of modifying fstab (I'm not very experienced with computers and was worried I would make the computer not boot) I set the mount point with gnome disks, formatted it to Ext4, and checked the box to mount on startup. So far it has worked fine like this but I don“t know if this is a worse way of doing things. |