I get that. I'm saying that flag ONLY impacts upload and has no impact on downloading things.
1 Like
Update:
I was able to make it work with these settings. I occasionally get the same error, but it hasn't gotten stuck in a loop.
Here's the service I use:
[Unit]
Description=RClone Service
Wants=network-online.target
After=network-online.target
AssertPathIsDirectory=/path/to/mount
[Service]
Type=notify
RestartSec=10
ExecStartPre=/usr/bin/bash -c "fusermount -uz /path/to/mount || true"
ExecStart=/usr/bin/rclone mount remote_name: /path/to/mount \
-v --log-file=/tmp/rclone_log.txt \
--log-systemd \
--gid=1000 \
--uid=1000 \
--allow-other \
--allow-non-empty \
--vfs-cache-mode=full \
--dir-cache-time=168h \
--timeout=10m \
--vfs-cache-max-size=15G \
--attr-timeout=36h \
--poll-interval=10m \
--low-level-retries=200 \
--vfs-read-ahead=256M \
--drive-chunk-size=512M \
--drive-pacer-burst=40 \
--drive-pacer-min-sleep=200ms \
--retries-sleep=10m \
--buffer-size=128M \
--transfers=1 \
--rc \
--rc-web-gui \
--rc-web-gui-no-open-browser \
--rc-addr="[REDACTED]" \
--rc-enable-metrics \
--rc-user=[REDACTED] \
--rc-pass=[REDACTED]
ExecStartPost=rclone rc vfs/refresh -v --fast-list recursive=true --rc-user=[REDACTED] --rc-pass=[REDACTED] --rc-addr="[REDACTED]" _async=true
ExecStop=/usr/bin/bash -c "fusermount -uz /path/to/mount || true"
Restart=on-failure
User=[REDACTED]
Group=[REDACTED]
[Install]
WantedBy=multi-user.target
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.