• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

such a thing as raid 1 program?

draggoon01

Senior member
i have 2 hard drives and i want to raid mirror just 1 directory (personal stuff, less than 100 meg). is there such a program that will do that?
 
You can use some form of Backup program to copy the directory to another hard drive on a schedule. You could also set up a scheduled task to run a batch file to delete the contents on the 2nd drive, and copy across all the files to the other drive, every x hours or once a day.

The .bat file could be like the following:

[/quote]del D:\Directory\*.* /s/q
xcopy C:\Directory\*.* D:\Directory\ /e[/quote]

Confused
 
rsync is great for networks because it only copies the parts of a file that changed, but running it locally might be overkill.

I would (and do) just have a cron job that creates a tar of my home directory to a different drive, so I can roll back a day if I have to.
 
Originally posted by: Confused
You can use some form of Backup program to copy the directory to another hard drive on a schedule. You could also set up a scheduled task to run a batch file to delete the contents on the 2nd drive, and copy across all the files to the other drive, every x hours or once a day.

The .bat file could be like the following:
del D:\Directory\*.* /s/q
xcopy C:\Directory\*.* D:\Directory\ /e[/quote]

Confused[/quote]

thanks, i think the scheduled batch file is the best option for me. could you please explain what those parameters do? (/s/q, /e)
 
Back
Top