During a massive 10 hour scp over the internet, I ran out of disk space at the destination after 7 hours.

Can I use rsync or something else to run this to completion or am I **ed and have to start all over again?

If I have to start over, I think I will use rsync in case the ISP craps out this time...

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
rsync --partial --progress --rsh=ssh $file_source $user@$host:$destination_file 

or

rsync --partial --progress --rsh=ssh $user@$host:$remote_file $destination_file 
link|improve this answer
+1 tyvm - I will try it out! – kfmfe04 Dec 16 '11 at 10:28
feedback

Your Answer

 
or
required, but never shown

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