【发布时间】:2022-12-27 09:09:10
【问题描述】:
As the question states, I want to backup many small files and send them via ssh to a destination. Does rsync help?
【问题讨论】:
标签: ssh tar rsync file-transfer zstd
As the question states, I want to backup many small files and send them via ssh to a destination. Does rsync help?
【问题讨论】:
标签: ssh tar rsync file-transfer zstd
This works quite well, significantly faster than gzip.
tar -c --zstd src_dir | ssh user@host "cd destination_dir && tar x --zstd"
tar -c --zstd src_dir | pv --timer --rate | ssh user@host "cd destination_dir && tar x --zstd"
【讨论】: