Possible Duplicate:
Copy large file from one Linux server to another
I need to transfer about ~3tb of data to another server. I am currently using rsync -z but it is going at 250kb/s so it will take forever. How can I speed it up?
Possible Duplicate:
Copy large file from one Linux server to another
I need to transfer about ~3tb of data to another server. I am currently using rsync -z but it is going at 250kb/s so it will take forever. How can I speed it up?
Mail a hard drive to the server and have a technician plug it in.
You can try to split data into let's say 3000 pieces using split
command and transfer it using netcat (nc
or netcat
command) over UDP. It's usually faster than TCP. Then you can rsync
them to make sure it all gets transferred correctly.