Hi all. Very new potential jellyfin user trying to set things up.
I have one of those mini fanless mini PC boxes with Proxmox and pfsense installed. Jellyfin has been installed as a lxc via one of the helper scripts. Set it up and it works fine.
I’m now trying to set it up to access an old Netgear ReadyNAS NV+ that I have lying around. It’s been setup with SMB/CIFS as well as FTP access. I’m considering disabling SMB/CIFS access since I think I don’t need that anymore. I think the NAS only supports TLS 1.2 protocol and it’s probably safer to disable it security wise. After searching around, I’ve come across curlftpfs which seems to be able to mount a ftp server as a local directly which i can then use as a library for jellyfin.
Is this the best way or is there a better alternative I can consider?
Thanks.
Why don’t you try NFS? For me it’s a lot easier to set up…
Because insecure FTP access is already enabled on the NAS ;-)
I tried to mount the share as NFS, but it didn’t seem to work from the console in the container. I ended up using CIFS which worked.
Probably the container does not have the required NFS client/libraries, but you don’t have to do this inside the container… You mount it on the host and share it via a docker volume with the container.
I have installed nfs-kernel-server packages. I think it is possibly a permissions issue.
I briefly considered mounting it on the host (Proxmox) layer, but the way I have things set up, I only power on the NAS if I need to access it. Most of the time the Proxmox hardware will be booting up when the NAS is off and I think it will cause boot issues trying to mount a NAS share which it cannot find.
Remember that the container sits on a different network, the docker network, maybe that’s why access doesn’t work.
You can add the mount to be
noauto
in fstab, so it doesn’t mount it unless you access the location. You can also mount it manually or via script, as needed.Not sure how to help more, you have a peculiar setup…