I am going to transfer a large file from one remote hard drive to another. Is "rsync" the best process for this ?
cp should be fine, if it's a one off copy.
Why are you considering rsync?
http://rothwerx.com/content/simple-speed-comparison-between-cp-mv-and-rsync
Always before when I purchased a new remote HD I had both icons on my desktop, then i would drag the old HD onto the new one. This transfer took a long time. I'm just trying to find a quicker way.
I am going to transfer a large file from one remote hard drive to another. Is "rsync" the best process for this ?
https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man1/rsync.1.htmlDo you have a "Link" for rsync that you used ? When I go on line and ask for rsync I get a dozen pages.
https://rsyncosx.blogspot.noThank you "Weaselboy" now all I have to do is make sense out of it !
Use the link in my response above. It was very simple to follow.Thank you "Weaselboy" now all I have to do is make sense out of it !
i have tried to use rsync and have come up zilch !
i have tried to use rsync and have come up zilch ! 1st I download it as per instructions, then I get a format that does nothing, Note "Labels" below. Also should I place "Partition's in the remote HD I'm planning to save my files in ?
I have absolutely ran aground on this rsync.
rsync -avP /path/to/file/to/sync username@192.168.0.100:directory/to/save/to/
I am going to transfer a large file from one remote hard drive to another. Is "rsync" the best process for this ?
Also for copying a number a files, because in case of a connection drop it can continue from where it left off.
If the issue is the large file size and an unreliable link it may be beneficial to use split to break the file into small chunks, use rsync to transfer them (using as many incremental tries as are necessary) and combine them back together at the destination.
I used your link, this is what I gotUse the link in my response above. It was very simple to follow.