Syncing or Mirroring Two Folders

2012-09-02 Thread Marc Sutton
I was wondering what people use to accomplish this. That is, keeping an exact copy of a particular folder as a way of backing it up. Are programs like superduper capable of this and vo friendly? Others? Thanks. Marc -- You received this message because you are subscribed to the Google Groups "

Re: Syncing or Mirroring Two Folders

2012-09-04 Thread Chris Blouch
If you don't mind using the terminal you can do rsync –a SourceDirectory DestinationDirectory if you don't care about preserving the timestamps, modifications dates and stuff you can just do rsync –r SourceDirectory DestinationDirectory You can do man rsync for more details. You can also l

Re: Syncing or Mirroring Two Folders

2012-09-04 Thread Marc Sutton
Thank you. This seems like the easiest and cheapest method. Marc On Sep 4, 2012, at 2:02 PM, Chris Blouch wrote: > If you don't mind using the terminal you can do > > rsync –a SourceDirectory DestinationDirectory > > if you don't care about preserving the timestamps, modifications dates and >