9 hours ago
(This post was last modified: 9 hours ago by Daniel_King. Edited 2 times in total.)
Hello,
I'm running Jellyfin on Linux with Portainer. My media is stored on Google Drive and I use Rclone to mount it.
This setup worked for quite some time, but after updating my Linux, my library won't be recognized any longer.
Some Portainer settings:
PGID: 1000
PUID: 1000
Host/volume >> Path in container
/media/jellyfin/movies >> /data/Movies
/media/jellyfin/shows >> /data/Shows
I mounted my corresponding Google Drive folders like this via Rclone:
nohup rclone mount gdrive:/ /media/jellyfin/movies --allow-other --buffer-size 64M --dir-cache-time 72h --drive-chunk-size 32M --vfs-read-chunk-size 128M --vfs-read-chunk-size-limit off --vfs-cache-mode writes > rclone.log 2>&1 &
nohup rclone mount gdrive2:/ /media/jellyfin/shows --allow-other --buffer-size 64M --dir-cache-time 72h --drive-chunk-size 32M --vfs-read-chunk-size 128M --vfs-read-chunk-size-limit off --vfs-cache-mode writes > rclone.log 2>&1 &
When performing a ls with movies and shows, I see my Google Drive content. So the mounting itself works.
Opening up Jellyfin, and trying to add a new library also shows me the /data/Movies and /data/Shows. Just when I perform a library scan or when I want to refresh the metadata, nothing is happening.
I have the feeling some permission must be off. Not sure if this is the reason, but when I check the permission with ls -l for my two mounted folders under /media/jellyfin I see this:
drwxr-xr-x 1 root root 0 Jan 24 10:59 movies
drwxr-xr-x 1 root root 0 Jan 24 10:59 shows
As my PGID & PUID are set to 1000 within Docker, could this mismatch be the reason?
Thanks in advance.
I'm running Jellyfin on Linux with Portainer. My media is stored on Google Drive and I use Rclone to mount it.
This setup worked for quite some time, but after updating my Linux, my library won't be recognized any longer.
Some Portainer settings:
PGID: 1000
PUID: 1000
Host/volume >> Path in container
/media/jellyfin/movies >> /data/Movies
/media/jellyfin/shows >> /data/Shows
I mounted my corresponding Google Drive folders like this via Rclone:
nohup rclone mount gdrive:/ /media/jellyfin/movies --allow-other --buffer-size 64M --dir-cache-time 72h --drive-chunk-size 32M --vfs-read-chunk-size 128M --vfs-read-chunk-size-limit off --vfs-cache-mode writes > rclone.log 2>&1 &
nohup rclone mount gdrive2:/ /media/jellyfin/shows --allow-other --buffer-size 64M --dir-cache-time 72h --drive-chunk-size 32M --vfs-read-chunk-size 128M --vfs-read-chunk-size-limit off --vfs-cache-mode writes > rclone.log 2>&1 &
When performing a ls with movies and shows, I see my Google Drive content. So the mounting itself works.
Opening up Jellyfin, and trying to add a new library also shows me the /data/Movies and /data/Shows. Just when I perform a library scan or when I want to refresh the metadata, nothing is happening.
I have the feeling some permission must be off. Not sure if this is the reason, but when I check the permission with ls -l for my two mounted folders under /media/jellyfin I see this:
drwxr-xr-x 1 root root 0 Jan 24 10:59 movies
drwxr-xr-x 1 root root 0 Jan 24 10:59 shows
As my PGID & PUID are set to 1000 within Docker, could this mismatch be the reason?
Thanks in advance.