SOLVED: Error writing images and NFO to SMB 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: SOLVED: Error writing images and NFO to SMB share (/t-solved-error-writing-images-and-nfo-to-smb-share) |
Error writing images and NFO to SMB share - Patio6573 - 2024-12-05 Setup: Box 1: Proxmox --> Debian12 VM, no GUI --> Jellyfin 10.9.11 Box 2: Truenas Scale --> SMB share "jellyfin-library" My notes show I used the following commands in the Debian VM to mount the network library location. Code: #make mounting point on server Problem: I get NFO and artwork related errors for every movie/show/episode in my library (1000+). I didn't notice the issue until I went looking for NFO files, since the artwork is successfully saving to the /var/... folder. So I did the kind of scan that replaces all metadata and artwork, and creates NFO files, and was dumbfounded when the log file was full of these access denied errors. Then I spent the last 3 evenings searching for keywords without luck. Code: [ERR] UnauthorizedAccessException - Access to path "/mnt/jellyfin-library/movies/some-movie (YYYY)/clearart.png" is denied. Will retry saving to "/var/lib/jellyfin/metadata/library/c6/c6f4ede0a7ffccb56743f86b575e8a60/clearart.png" Expectation: Jellyfin starts writing artwork and NFO files to the SMB share. I can run the following command from the debian command line and manually create a NFO file without issue: Code: root@debian-jellyfin:/mnt/jellyfin-library/movies/some-movie (YYYY)/movie.nfo I also tried a temporary Jellyfin installation on Windows and it worked OK, so it's definitely specific to my Linux installation. I am 99% sure I've overlooked something basic, but I'm at a point where I need some guided help. RE: Error writing images and NFO to SMB share - TheDreadPirate - 2024-12-05 Try adding "noperm" to the SMB options in /etc/fstab. Code: //192.168.1.114/jellyfin-library /mnt/jellyfin-library cifs credentials=/root/.jellyfin-library-credentials,_netdev,noperm 0 0 RE: Error writing images and NFO to SMB share - Patio6573 - 2024-12-05 (2024-12-05, 01:59 PM)TheDreadPirate Wrote: Try adding "noperm" to the SMB options in /etc/fstab. That did the trick! Thank-you very much. |