STOP and READ USE THIS TEMPLATE NO EXCEPTIONS - By not using this, you waste your time, our time and really hate puppies. Please remove these two lines and that will confirm you have read them.
What is the problem you are having with rclone?
I have two mounted remotes (one dropbox, one quotaless/minio). I am trying to run Audiobookshelf using Docker Compose. When I set the compose file up to point to the dropbox remote (/home/seannymurrs/dropbox/Audiobooks), it works fine. When I set the compose file up to point to the Quotaless remote (/home/seannymurrs/quotaless/data/personal-files/audiobooks), I get the following error when I attempt to start the container:
Error: statfs /mnt/nvme13n1/seannymurrs/quotaless/data/personal-files/audiobooks: no such file or directory
For some reason, when I point to the quotaless mount, it is replacing "/home/" with "/mnt/nvme13n1/" (at least in the error log). I'm assuming that's at least part of the problem, but I'm not sure how to troubleshoot further. I've confirmed that the Quotaless remote is actually mounted, and I can navigate to the audiobooks folder just fine.
Run the command 'rclone version' and share the full output of the command.
rclone 1.67.0
- os/version: gentoo 2.15 (64 bit)
- os/kernel: 6.1.67-gentoo-whatbox (x86_64)
- os/type: linux
- os/arch: amd64
- go/version: go1.22.6
- go/linking: dynamic
- go/tags: none
Which cloud storage system are you using? (eg Google Drive)
The cloud storage system that's giving me the issue is Quotaless.
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
Below is the command I've used to mount this remote.
rclone mount \
--log-file ~/logs/rclone2.log \
--log-level INFO \
--dir-cache-time 5000h \
--poll-interval 10s \
--attr-timeout 5000h \
--cache-dir=cache \
--vfs-cache-mode full \
--vfs-cache-max-size 200G \
--vfs-write-back 5m \
--vfs-cache-max-age 5000h \
--vfs-cache-poll-interval 5m \
--vfs-read-ahead 2G \
--bwlimit-file 200M \
quotaless: /home/seannymurrs/quotaless \
--daemon
Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.
[dboxmovies]
type = dropbox
token = XXX
[dboxtv]
type = dropbox
token = XXX
[dropbox]
type = dropbox
token = XXX
[gdrive]
type = drive
client_id = XXX
client_secret = XXX
scope = drive
token = XXX
team_drive =
[quotaless]
type = s3
provider = Minio
access_key_id = XXX
secret_access_key = XXX
endpoint = https://io.quotaless.cloud:8000
acl = bucket-owner-full-control
upload_cutoff = 100Mi
chunk_size = 50Mi
list_chunk = 1000000
encoding = Slash,Percent,InvalidUtf8,Dot
A log from the command that you were trying to run with the -vv
flag
I'm not getting an error when mounting my remote.