1 2 |
tar zcf - bigfile.img | mbuffer -s 1K -m 512m | ssh otherhost "tar zxf -" |
This helps stabilize any issues with your disk I/O which is a huge bottleneck when copying large files over the network.
Grab mbuffer..
1 2 |
tar zcf - bigfile.img | mbuffer -s 1K -m 512m | ssh otherhost "tar zxf -" |
This helps stabilize any issues with your disk I/O which is a huge bottleneck when copying large files over the network.
Grab mbuffer..