Jellyfin on CasaOS (Zimaboard) unable to see /mnt/share - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: Jellyfin on CasaOS (Zimaboard) unable to see /mnt/share (/t-jellyfin-on-casaos-zimaboard-unable-to-see-mnt-share) |
Jellyfin on CasaOS (Zimaboard) unable to see /mnt/share - lifeisrisky - 2024-08-15 I have a Zimaboard running CasaOS and a Synology DS1621+ NAS. I created the following shared folder on the NAS and gave read write access to user casashare Share and added these folders under it and shared permissions with subfolders Media Media/images Media/tvshows Media/movies In CasaOS I did the following commands sudo mkdir -p /mnt/share sudo mount -t cifs -o username=your_nas_username,password=your_nas_password //NAS_IP_ADDRESS/Share /mnt/share and added the following to /etc/fstab //NAS_IP_ADDRESS/Share /mnt/share cifs username=your_nas_username,password=your_nas_password,uid=1000,gid=1000 0 0 I can see the /mnt/share when I use df -m in the terminal. When I go into Jellyfin and attempt to add the folder as a library I get "The path could not be found. Please ensure the path is valid and try again." I can access the folder /mnt/share from terminal but Jellyfin just can't seem to see it. Any suggestions on what I might have missed or how to troubleshoot this? RE: Jellyfin on CasaOS (Zimaboard) unable to see /mnt/share - TheDreadPirate - 2024-08-15 Remove the UID and GID parameters from the mount parameters. And then make sure that /mnt/share allows for "others" to r+x. RE: Jellyfin on CasaOS (Zimaboard) unable to see /mnt/share - lifeisrisky - 2024-08-15 (2024-08-15, 05:01 PM)TheDreadPirate Wrote: Remove the UID and GID parameters from the mount parameters. And then make sure that /mnt/share allows for "others" to r+x. Thanks! What would be the chmod for allows for "others" to r+x? RE: Jellyfin on CasaOS (Zimaboard) unable to see /mnt/share - TheDreadPirate - 2024-08-15 Check if it already has that permision. It would be the last three values. rwxr-xr-x If it doesn't already it would be "sudo chmod o+rw /mnt/share" RE: Jellyfin on CasaOS (Zimaboard) unable to see /mnt/share - lifeisrisky - 2024-08-15 (2024-08-15, 05:11 PM)TheDreadPirate Wrote: Check if it already has that permision. It would be the last three values. Thank you but unfortunately that didn't fix the problem. I still can't seem to see the folder /mnt/share in Jellyfin. RE: Jellyfin on CasaOS (Zimaboard) unable to see /mnt/share - TheDreadPirate - 2024-08-15 Changing fstab doesn't take affect right away. You need to unmount then re-mount the share or reboot. Code: sudo umount /mnt/share |