Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to transfer a large (~3GB) file between two unix machines.

I can use scp or rsync, but sometimes the transfer is corrupted. (I have to check manually.) I can split the file into pieces and transfer them and then checksum and then recombine, but this is tedious.

Is there a single command to correctly transfer a large file between two Unix machines? I want it to automatically checksum both copies, and keep redoing the transfer (or pieces thereof) until it gets all bytes across the wire correctly.

share|improve this question
I've never had trouble with "sometimes" corruption when using scp or rsync. I would be seriously worried if I did; random corruption shouldn't just happen like that. – Greg Hewgill Oct 10 '09 at 8:36

closed as off topic by abelenky, Henk Holterman, Zed, Greg Hewgill, nos Oct 10 '09 at 8:38

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 0 down vote accepted

Sorry, but scp should not corrupt files. It's depending on tcp/IP which takes care of correct data transfer. Maybe you should check for bad ram or other problems on your servers/clients.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.