Do you have any suggestions for 200g website linux to move without rsync?

because rsync can"t afford to give up. Are there any other good ways to move?

Mar.20,2021

tar package, and then send it to scp:

 tar czf temp.tar.gz ***
 scp temp.tar.gz user@host:~/target/

on the target machine:

nc-l 1234 | tar zxvf-

on the host to be moved:

tar zcvf-/ path/to/dir | nc remoteip 1234

move as fast as possible, which is extremely efficient for a large number of small files. The disadvantage is that it cannot be re-uploaded, so be sure that your session will not be broken. It is recommended to execute

in tmux or screen terminal.

refer to my previous blog: https://my.oschina.net/abcfy2.

Menu