2024-03-20, 08:45 PM
I haven't used rclone for a while, but last time i did i was mounting my GDRIVE in it. You could start the docker up and then monitor access to the mounted folder using lsof, this will tell you exactly what process and files are being accessed. An example below, repeating every 2 seconds.
"lsof +D /mnt/media/dir1 -r 2"
output should be nothing, till you start a movie then you should see something like
"COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
ffmpeg 2024075 jellyF 4r REG 8,128 18124725551 1646743080 /mnt/media/dir1/Aliens (1986).mkv"
It might help you narrow down what process is accessing files from the remote, if real-time monitoring is turned off then you should only see activity when viewing a film or manually initiating a scan.
"lsof +D /mnt/media/dir1 -r 2"
output should be nothing, till you start a movie then you should see something like
"COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
ffmpeg 2024075 jellyF 4r REG 8,128 18124725551 1646743080 /mnt/media/dir1/Aliens (1986).mkv"
It might help you narrow down what process is accessing files from the remote, if real-time monitoring is turned off then you should only see activity when viewing a film or manually initiating a scan.