Mirror hard-drive? RAID or something?

1

I have two disks, D:\ with 70gb capacity and E:\ with 250gb

I want EVERYTHING that is added, modified, deleted etc to E:\Backups\ to be mirrored onto D:\

How to do? I'm running Win XP pro. Both disks are SATA.

I would prefer to not create any partitions because E:\ is already filled. But if it's possible to split partitions and this makes mirroring a lot easier this might also be a good option.

ugh

Posted 2009-09-02T09:42:23.523

Reputation:

Can you explain why you'dd like to create a mirror? – Dimitri C. – 2009-09-02T10:27:53.247

In case any of the disks crashes. – None – 2009-09-02T12:00:42.030

Answers

1

an automatic file synchronization utility

Take a look at Robocopy, it should be perfect for this (under XP, you have to download it).

robocopy, or "Robust File Copy", is a command-line directory replication command. It was available as part of the Windows Resource Kit, and introduced as a standard feature of Windows Vista and Windows Server 2008. (Wikipedia.de)

Something like this:

robocopy D:\ E:\ /LOG:C:\robo.log /R:0 /W:0 /E /IT /MIR

You can use the link above to look for other parameters or simply type "robocopy /?" in your command line for help.

Milde

Posted 2009-09-02T09:42:23.523

Reputation: 1 109

1

RAID 1 would not be a solution at all since both disks are of different sizes. The best solution for you would be to run an automatic file synchronization utility - I recommend Unison.

Unison

Set Unison to synchronize E:\Backups*.* to D:\, and let it run automatically. In order to minimize system performance loss, you might want to set Unison to synchronize at periodic time intervals - achieving a balance between performance and up-to-date backups.

caliban

Posted 2009-09-02T09:42:23.523

Reputation: 18 979

1

RAID isn't an answer here, as you're looking at mirroring just a folder, and not an entire drive, also as your drives are different sizes you'll lose the extra capacity on the larger drive.

Have you tried Microsoft SyncToy (ignore the "Toy" part of the name, that's just because it was branded with the PowerToys downloads at one point). Although it's distributed by the MS ProPhoto Group, it happily syncs any file type.

I use it to backup selected folders on my hard drive to a couple of different external USB drives, but its just as happy with syncing internal drives, even happily copes if either drive changes drive letter for any reason.

GAThrawn

Posted 2009-09-02T09:42:23.523

Reputation: 4 176

1

I think RAID mirroring is not a good backup solution. A harddisk crash is far from the only possible cause of data loss. Examples of other hazards:

  • files modified/deleted by mistake (human error)
  • a computer virus modifying/deleting files
  • a bug in an application deleting the wrong files
  • burglary
  • fire
  • electrical surge (for example a lightning stroke). As both of your mirrored disk are built in the same system, it is likely they both will be damaged at the same time.

I think a better solution would be to buy an external harddisk which you keep disconnected, and use specialized backup software (I use Second Copy) to update the backup every once in a while, keeping multiple versions of your files.

Dimitri C.

Posted 2009-09-02T09:42:23.523

Reputation: 2 232