关于 rclone 的一迷惑
本帖最后由 CodyDoby 于 2019-2-17 02:30 编辑为了拷贝PML大佬的资源,每天都要先用工作模式1
[*]rclone copy -v gd1:A gd2:B复制代码
来极速拷贝。把免费配额用完后,再切换到工作模式2
[*]rclone copy -v --disable copy gd1:A gd2:B
[*]复制代码继续拷贝。争分夺秒,毫不懈怠。
rclone copy 默认的是 server side copy (工作模式1),是直接在 Google 的 server 之间 copy 文件,不占自己服务器(本地)资源而且速度极快,但是每24小时只有750G的配额。
现想在用完这750G的配额后,自动切到 "--disable copy" 模式(工作模式2)下进行盘间资源的拷贝...
rclone 自身好像没有提供这样的功能,不知道怎么用 bash 给写个这样的自动切换... 就是不知道如何判断这 750G 被用完了
line7.png
关于这两种工作模式的官方说明:
Server side copies are also subject to a separate rate limit. If you see User rate limit exceeded errors, wait at least 24 hours and retry. You can disable server side copies with --disable copy to download and upload the files if you prefer.
页:
[1]