[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] Really slow copy
>At least if you do the transfer with rsync instead of cp, you can kill
>and restart the sync and pick up where you left off rather than having
>to restart a large copy.
>
>rsync -avz src dest
That actually won't pick up where you left off.. It will start the last file
over. use --partial to really be able to pick up where you left off.. won't
matter much on small files, but really helps on big ones...