2024-07-29, 04:43 AM
(This post was last modified: 2024-07-29, 04:55 AM by grahambo. Edited 7 times in total.)
In my FFMPEG log files within Jellyfin, I'm getting a "No such file or directory" error.
This is because the network drives are getting unmounted after a few days of uptime.
What could be causing this? It is getting annoying having to remount my network drives over and over.
Could it be from plugins updating? Does Jellyfin automatically reboot periodically? Do I need to write a bash script that constantly mounts the network drives??
Actually I just tried remounting one of the network drives, and I got this error (username/password anonymized):
sudo mount -t cifs //192.168.1.5/Videos /mnt/WDMyCloud/Videos -o username=*******,password=*****,iocharset=utf8,vers=3.0
mount error(16): Device or resource busy
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)
I fixed it by appending
I also just tried mounting the other network drive and it worked just fine. But why was it unmounted in the first place??
This is because the network drives are getting unmounted after a few days of uptime.
What could be causing this? It is getting annoying having to remount my network drives over and over.
Could it be from plugins updating? Does Jellyfin automatically reboot periodically? Do I need to write a bash script that constantly mounts the network drives??
Actually I just tried remounting one of the network drives, and I got this error (username/password anonymized):
sudo mount -t cifs //192.168.1.5/Videos /mnt/WDMyCloud/Videos -o username=*******,password=*****,iocharset=utf8,vers=3.0
mount error(16): Device or resource busy
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)
I fixed it by appending
sec=ntlmssp
to the mount command but why does this keep happening? I also just tried mounting the other network drive and it worked just fine. But why was it unmounted in the first place??