Jellyfin Forum
SOLVED: Truenas network shares for Jellyfin - 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: Networking & Access (https://forum.jellyfin.org/f-networking-access)
+---- Thread: SOLVED: Truenas network shares for Jellyfin (/t-solved-truenas-network-shares-for-jellyfin)



Truenas network shares for Jellyfin - alleycat - 2024-11-07

When I first setup Jellyfin a couple of months ago, I figured I would use my Samba shares that I used for PowerDvd win10. Right now my shares for Jellyfin are configured as //192.168.1.60/dvd /mnt/dvd cifs username=tom,password=xxxxxxxx,iocharset=utf8
These shares are pointed to the datasets on my Truenas Scale machine. Right now Jellyfin can't write to them. Is it as easy as adding the Jellyfin user to the ACL's in Truenas for those datasets? And that user is "Jellyfin"?


RE: Truenas network shares for Jellyfin - TheDreadPirate - 2024-11-07

Your NAS has no idea who "jellyfin" is. Everything comes in as "tom".

To get Jellyfin write permissions, I believe "noperm" is the option you need to add to the mount.

Code:
//192.168.1.60/dvd /mnt/dvd cifs username=tom,password=xxxxxxxx,iocharset=utf8,noperm 0 0



RE: Truenas network shares for Jellyfin - alleycat - 2024-11-07

(2024-11-07, 01:38 PM)TheDreadPirate Wrote: Your NAS has no idea who "jellyfin" is.  Everything comes in as "tom".

To get Jellyfin write permissions, I believe "noperm" is the option you need to add to the mount.

Code:
//192.168.1.60/dvd /mnt/dvd cifs username=tom,password=xxxxxxxx,iocharset=utf8,noperm 0 0

Thanks! Going to give it a try.