Breaking apart a RAID 1?
December 2, 2006 7:30 AM Subscribe
Is there any way to "break" a mirrored disk set in Mac OS X (that was created with Disk Utility) back into two separate -- but identical -- drives?
I had bought two 500GB drives to use as a RAID 1 (purely for hardware redundancy) with the idea that if I became desperate for disk space I could break them into independent volumes again.
I assumed it was easy since that's essentially the protection the RAID 1 provides -- one drive goes out, and the other still has all the data. However, I have not seen any examples or steps describing how this would be done. Can it be done?
posted by teradome to computers & internet (3 answers total) 1 user marked this as a favorite
$ sudo -s# diskutil checkRAIDRAID SETS
---------
Name: DataMirror
Unique ID: 2CFEC74D-5C0C-49CB-940E-6099AE3C2B97
Type: Mirror
Status: Online
Device Node: disk4
Apple RAID Version: 2
----------------------------------------------------------------------
# Device Node UUID Status
----------------------------------------------------------------------
0 disk1s3 EF3F0D87-0E9A-4ED4-BB2B-F2A7EBFD0306 Online
1 disk3s3 B1EC4F22-9C0D-4CDB-90FE-D49347195834 Online
----------------------------------------------------------------------
# diskutil removeFromRAID disk3s3 disk4You might also repeat this for the first disk and then do
diskutil destroyRAIDto destroy the RAID array.Make sure you have backups.
posted by Blazecock Pileon at 7:45 AM on December 2, 2006