up vote 3 down vote favorite
1
share [g+] share [fb]

I recently had a motherboard die, and used the on board RAID controller to do RAID 1 with two hard drives. I'm wondering if I can take one of the drives and access it normally, in a non-RAID setup.

EDIT: It was an Intel D975XBX2 if that helps.

link|improve this question

80% accept rate
Not a programming question. – Scott Feb 19 '09 at 20:53
It was implied when you posted it on a programming Q&A website. This question would be more appropriate for the upcoming IT spin-off of SO. – William Brendel Feb 19 '09 at 21:00
feedback

closed as off topic by Jeff Atwood Apr 25 '09 at 7:56

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

up vote 4 down vote accepted

It depends entirely on the RAID controllers involved. Some RAID controllers will store the data on RAID1 disks the same as if there was no RAID controller used, but many other will store it in a format only readable by that type of RAID controller.

This is one of the reasons why I prefer software RAID, you can move the disks to any machine, regardless of controllers.

link|improve this answer
feedback

As RAID 1 should store the exact data on two discs, there is no good reason why there it should change it in any way.

You can do a simple test: make RAID 1, put some data on it, disconnect one drive and put the other one as a regular drive without any RAID and see if it works.

link|improve this answer
feedback

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