What is the problem you are having with rclone?
Since moving to Dropbox, and the latest rclone version I've been hit with tons of buffering in Plex when streaming. I previously had zero issues with my Google Drive mount.
I'm wondering if my mount command just isn't optimized for use with Dropbox, vs Google Drive, or if there's generally any improvements I could make with additional flags, etc.
Possibly unrelated but when I start a stream in Plex rclone begins to download the file from Dropbox (can see the bandwidth spike with bmon
as well as the transfer listed with rclone rc core/stats
), even if the file is in the vfs cache. Which seems a bit weird.
Run the command 'rclone version' and share the full output of the command.
rclone v1.62.2
- os/version: ubuntu 22.04 (64 bit)
- os/kernel: 5.15.0-71-generic (x86_64)
- os/type: linux
- os/arch: amd64
- go/version: go1.20.2
- go/linking: static
- go/tags: none
Which cloud storage system are you using? (eg Google Drive)
Dropbox
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
/usr/bin/rclone mount \
--allow-other \
--vfs-cache-mode full\
--poll-interval 15s \
--dir-cache-time 720h \
--cache-tmp-upload-path /home/rclone_cache \
--cache-dir /home/rclone_cache \
--cache-tmp-wait-time 60m \
--vfs-cache-max-size 800G \
--vfs-read-ahead 1G \
--vfs-read-chunk-size 32M \
--vfs-read-chunk-size-limit 256M \
--buffer-size 1024M \
--bwlimit 10M:off \
--log-file /var/log/rclone/rclone.log \
--log-level DEBUG \
dropbox-crypt: /mnt/media \
--user-agent="[REDACTED]" \
--rc
The rclone config contents with secrets removed.
[dropbox]
type = dropbox
token = {"access_token":"REDACTED","expiry":"2023-06-09T19:59:12.733910207Z"}
client_id = REDACTED
client_secret = REDACTED
[dropbox-crypt]
type = crypt
remote = dropbox:crypt
filename_encryption = standard
directory_name_encryption = true
password = REDACTED
password2 =
Unfortunately I have only just added log-file and log-level to my mount command and I wasn't historically logging any data, so I can't give any log files as yet. Will upload once I've collected some data.