1

It's quite easy to start two instances of any app from the command line. In this case:

open -n /Applications/SuperDuper\!.app

However, I know that this isn't always a good idea because most applications are not meant to share resources with themselves. I was hoping to back up two different drives with SuperDuper! (a hard drive cloning application) at the same time. I was wondering if this is safe.

Scott Wilton
  • 165
  • 5

1 Answers1

1

A better question is "can I back up two different drives at the same time?"

If you have 4 drives total, on 4 different connections, then yes. To be clear, there must be 4 physically separate storage devices involved, not just separate volumes. And "4 connections" does not include daisy-chained firewire devices or plugged into the same usb hub (those count as one connection).

Running 2 copy jobs on the same volume is a huge performance hit - drives have but one read/write head so the absolute best you can do is 2x sequential-copy speed. In reality it will be much worse as the heads are constantly going back and forth between the two copy jobs.

Running data down the same wire will similarly eliminate any advantage you gain by running two processes.

The one exception to the rule is network copies - downloading several files over the internet (different servers) works because your external network connection is so much slower than the internal connections that they never get saturated.

paul
  • 2,665
  • 12
  • 8
  • While this might be the "better question", and the points you made are good and probably relevant, it is not the question I asked. – Scott Wilton Dec 25 '14 at 12:04
  • @ScottWilton since you didn't describe your drive arrangements I made some assumptions. – paul Dec 28 '14 at 11:17