Quantcast
Channel: Day to day stuff
Viewing all articles
Browse latest Browse all 83

Fast directory transfer on Unix machines

$
0
0
Here is a little trick to transfer a big folder from one unix machine to another in 2 variations. In this variation netcat is in listen mode on the target (execute in the given order): on target> nc -l 19001 | lzop -d | tar x on source> tar c [directory to copy] | lzop | nc [target] 19001 In the second variation netcat is in listen mode on the source system (again, execute in the given order):

Viewing all articles
Browse latest Browse all 83

Trending Articles