I have a folder (which is filled with many many sub-folders and files) which is on a FireWire drive [source] which I am trying to move to a USB drive [destination].

I am trying to move all of the files from the Source to the Destination.

I started doing this via Finder, but it gave me a permissions error about 1/8th of the way through the process and then stopped.

When moving files between drives, I believe the Finder first does a 'copy' and then removes the 'source' only when the copy command has completed successfully.

That means that some files were copied successfully, but I have no idea which ones or how many. So I started copying sub-folders from Source to Destination (smaller sets) and removed them from Source when they successfully copied.

I ended up not being able to complete that process in one sitting, and I lost my "place"

So now I'm left with two incomplete data sets. The Source probably has some files/folders which are already on the Destination, but not everything has been copied.

Some of the folders may have been partially copied but not all of their subfolders, etc.

I'm trying to figure out the best way to move the rest of Source to Destination while minimizing duplication. We're talking about a lot of data here (Source is 420.72 GB in 398,127 items, and Destination is 298.84 GB and 390,149 items) so I'm obviously going to have to try to automate this somehow. I'm just not sure how.

I've thought about gcp [GNU cp] with --update --archive or ditto or rsync or ChronoSync but I'm just not sure what the best option is and what settings I should use for whichever program would be recommended (do I want --archive with gcp? What flags would I use with ditto or rsync?)

link|improve this question

This software is amazing : bombich.com (Carbon Copy Cloner). Solves all your problems. – Kassym Dorsel Nov 17 '11 at 3:15
CCC or SuperDuper will only help me duplicate what I have, right? I need to merge them first. – TJ Luoma Nov 17 '11 at 3:23
It can merge. You will need to fine tune the settings yourself. ie customize these settings/advanced settings – Kassym Dorsel Nov 17 '11 at 3:27
Ah… I did not know that. Will definitely check it out. – TJ Luoma Nov 17 '11 at 15:09
feedback

1 Answer

up vote 4 down vote accepted

You can open Terminal and use one of the following (rsync would probably be the one for you if you want something that won't be completely lost if you halt the process):

The standard UNIX way

cp -R -v source/. destination

The geeky UNIX way (restartable)

rsync -vaEW source/ destination

The OSX "easy" way

ditto -V source destination

Source

link|improve this answer
Wouldn't that 'cp' command break soft-links? For example, Mac apps seem to sometimes use links inside the .app wrapper. (Links are always the big unknown to me when trying to do this.) Good point about rsync, that may be the best plan since (with so much data) the possibility of interruption is significant. – TJ Luoma Nov 17 '11 at 15:09
feedback

Your Answer

 
or
required, but never shown

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