Hello there rclone community
I think this goes in support rather than How to guides, apologies in advance if that's not the case.
Which cloud storage system are you using? (eg Google Drive)
Exlusively Google Drive (Shared Drives)
The command you were trying to run (eg rclone copy /tmp remote:tmp)
Not relevant here
Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.
Not relevant here
A log from the command that you were trying to run with the -vv flag
Not relevant here
Rclone version and OS:
rclone v1.74.3
- os/version: debian 13.5 (64 bit)
- os/kernel: 6.12.90+deb13.1-cloud-amd64 (x86_64)
- os/type: linux
- os/arch: amd64
- go/version: go1.26.4
- go/linking: static
- go/tags: none
Hey community
So I have a use case, where I need to zip certain folders on certain Google Shared Drives [ORIG], then put the resulting zip file in another destination Shared Drive [DEST].
Since there are different ways to do this with rclone, I'd like to get some feedback on what you think is the most reasonable safety/performance option. I see 3 ways:
- Do a rclone copy from ORIG to a local disk, compress the folder locally, rclone copy the zips to DEST. Easy, but it will need lots of local disk space. Can be done in a cloud VM though.
- Do a rclone mount of ORIG and compress the folder there, so the resulting zip file is already there. Then move it to DEST from drive web interface. Not sure if this could cause bottlenecks. It is possible also that I hit upload/download quota, and not sure if rclone mount+zip will handle this well. I know rclone copy does it well.
- Do a rclone mount of both ORIG and DEST, an zip from ORIG with destination to DEST. This could ease up bottlenecks, but not sure if it will be appropiate.
Does anyone have some hints? It is difficult for me to do pre-benchmarks of all this, since the use cases vary greatly. Sometimes it is literally 200k files totally a dozen TBs. Sometimes it is few files but very big ones. And so on.
Many thanks in advance.
Cheers,
Marc