meta data for this page
  •  

This is an old revision of the document!


send / receive

migrate to new storage

sudo apt install netcat-openbsd pv zstd

Sender:

zstd -d | pv | nc -w 2 -N <remote_ip> 44444

Receiver:

nc -vl 44444 | zstd -d | pv |