How to merge files after chunker

For example, I did this
rclone copy -P /root/backup_srv/mount/gdrive/upload/kubuntu/Root\ \(09. 09.2017\).fsa overlay_cap:

After that, I received three files that were cut 2Gb

Root (09.09.2017).fsa.rclone_chunk.001
Root (09.09.2017).fsa.rclone_chunk.002
Root (09.09.2017).fsa

How can I merge them back in one file?

Hi,

Just do the reverse, that is something like this:

rclone copy -P overlay_cap:some/folder/somefile.fsa /some/local/folder

also if I remember correctly you can use cat

rclone copy -P overlay_cap:GSuite_Drive_Chunks/Root\ \(09.09.2017\).fsa /root 2022-12-16 23:51:16 ERROR : : error reading source directory: directory not found
2022-12-16 23:51:16 ERROR : Attempt 1/3 failed with 1 errors and: directory not found
2022-12-16 23:51:16 ERROR : : error reading source directory: directory not found
2022-12-16 23:51:16 ERROR : Attempt 2/3 failed with 1 errors and: directory not found
2022-12-16 23:51:16 ERROR : : error reading source directory: directory not found
2022-12-16 23:51:16 ERROR : Attempt 3/3 failed with 1 errors and: directory not found
Transferred:             0 / 0 Bytes, -, 0 Bytes/s, ETA -
Errors:                 1 (retrying may help)
Elapsed time:         0.6s
2022/12/16 23:51:16 Failed to copy: directory not found

Through mounting (just copied the file with MD5 sum)

rclone copy -P /root/backup_srv/mount/mailru_cap/GSuite_Drive_Chunks/Root\ \( 09.09.2017\).fsa /root
Transferred:            80 / 80 Bytes, 100%, 135 Bytes/s, ETA 0s
Transferred:            1 / 1, 100%
Elapsed time:         1.0s

cat good, but not convenient, i need to download files, and then merged

It’s not entirely clear what you want to achieve… Are you looking for a way to merge the chunks into a single file without first downloading any chunks? I.e. you no longer want to user the chunker backend?

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