Copy or Sync server-side from TeamDRive to Folder

What is the problem you are having with rclone?

I can't enable the serversidecopy or between the teamdrive and a folder of Gdrive. The transfer reach the max speed of my local connection.

I got a gdrive account, with my folder where my media is stored. This account is mounted by one script.

The second drive is a teamdrive mounted in with another script.

What is your rclone version (output from rclone version)

rclone v1.51.0

  • os/arch: linux/amd64
  • go version: go1.13.7

Which OS you are using and how many bits (eg Windows 7, 64 bit)

Debian Buster

Which cloud storage system are you using? (eg Google Drive)

Drive1: TeamDrive shared with the account through googlegroup and directly. This drive is mounted in /mnt/Novedades.

Drive 2: Gdrive account. This drive is mounted in /mnt/Gdrive.

My rclone.conf is the next:

[Gdrive]
type = drive
client_id = 1053
client_secret = 76cK
token = {"acce0"}
root_folder_id = 0XXXXXXXXXXXXXXXXXXXX
server_side_across_configs = true

[Novedades]
type = drive
client_id = 105
client_secret = 76cK
token = {"access0"}
team_drive = 0XXXXXXXXXXXXA
server_side_across_configs = true

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone copy /mnt/Novedades/1080 /mnt/Gdrive/ -P -v --drive-server-side-across-configs --max-transfer 730G

A log from the command with the -vv flag (eg output from rclone -vv copy /tmp remote:tmp)

Here is the debug.

Thanks!

hello and welcome to the forum,

you can copy from remote to remote without the mounts

rclone copy Drive1:/1080 Drive2: -P -v --drive-server-side-across-configs --max-transfer 730G

1 Like

WTF!!! It works...I feel soo stupid just now.

Thanks!

mounts are good when you want to expose the remote as a file system.
you can use standard apps like file managers.

for example, i have a remote on wasabi, a s3 clone.
that remote is crypted and has my video and music collection.
then i point emby or vlc to that mount and i can watch videos.

1 Like

Sure! Thats make total sense...I have been using all time the mounts outside of rclone, for that reason I always try to mount with the binds.

Thanks again!

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.