What is the problem you are having with rclone?
Run the command 'rclone version' and share the full output of the command.
rclone version
rclone v1.67.0
- os/version: debian 10.13 (64 bit)
- os/kernel: 5.10.0-0.deb10.24-amd64 (x86_64)
- os/type: linux
- os/arch: amd64
- go/version: go1.22.4
- go/linking: static
- go/tags: none
Are you on the latest version of rclone? You can validate by checking the version listed here: Rclone downloads
-->
No, but i can't update because it's a seedbox from a shared vps with some limits.
Which cloud storage system are you using? (eg Google Drive)
1fichier
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
It's the command on a script that i use wich work fine except i'm looking for flag modification.
RCLONE_COMMAND = [
"rclone", "mount", "1fichier:", MOUNT_POINT,
"--vfs-cache-mode", "full",
"--vfs-write-back", "30s",
"--cache-dir", "/home/butts136/.cache/rclone",
"--log-level", "INFO",
"--progress", "--stats", "0.5s",
"--dir-cache-time", "12h",
"--use-mmap",
"--transfers", "10",
"--retries", "1", "--retries-sleep", "180m",
"--tpslimit", "50",
"--ignore-errors",
"--low-level-retries", "1",
"--log-file", LOG_FILE,
"--fast-list",
I just removed last question because I don't have any direct problem to find.
I'm looking for a way to limit the simultaneous upload. I'm not talking about speed or anything. I want to limit it because 1Fichier APi is kind of slow and I want to put all priority to read and only 1 as write.
So if my Sonarr just copy a season of 24 episodes, it will just write it one by one instead of using all the ressources from the APi and give me a temporary ban for hiting too much error at the same time because 1fichier doesn't handle well multiple uploads (write) at the same time. So if there's a flag able to split my --transfers 10 in 9read and 1 write or as I want. I would like to know.
Thanks.