best way to copy large directories (400-800 gb)?

basically the topic is my question.

What is the best way to copy large amounts of data from one drive to another.

I don't think dump is an option because it's an ext2 drive and i am copying it to a zfs mount point

i know about cp, cpio and tar. just wondering which is best or if there is another option that is better

thanks
 
vivek said:

for a one time copy?
i don't know anything about rsync...i thought it was for structured backups....how would you use it to move data from one folder to another easily?
 
rsync can do local and remote backups:
Code:
rsync -a src dest
If there is any change next time it will only copy changed file thus saying time. You can also use mirrordir.
 
Back
Top