How do format old Pegasus2 drives for non-RAID us on a Mac

  • 142 Views
  • Last Post 19 November 2016
Charles Shelor posted this 09 November 2016

I am upgrading the drives in a Pegasus2 R6 and want to use the old drives on another Mac.  When I put the old drive in an external drive enclosure, it is not recognized on the Mac, even by several different disk utilities.  I tried to find a Promise Utility command to make the drives standalone, but could not.  I deleted the drive array through the utility, but individual drives are still not recognized when in the external enclosure.  Any thoughts on how to reuse them?  I really don't want to just throw them away (recycle).

Thanks, Charles

Order By: Standard | Latest | Votes
R P posted this 09 November 2016

Hi Charles,

The problem is the drive contains DDF (Disk Data Format, raid metadata). Windows won't do anything with the disk either and gives a wierd error message I don't recall.

Your MAC has the ability to clean the metadata, but you will have to use the terminal, sudo, and the 'dd' command (also known as disk destroyer). You must be extremely careful with this command or you can delete the contents of a disk you want to keep.

I suggest the following, open a terminal, and with the disk you want to clean *not* attached run the following command.

diskutil list

This will show you what disks you don't want to touch. Then attach the disk you want to clean and run the same commad again. This will allow you to tell for certain which drive device is the one you want to delete the contents of, it will be the difference between the first and second listing. Also the raid disk should not show any Apple_HFS or Apple_Boot partitions.

/dev/disk0 will probably (but not necessarily) be your boot disk, if you added the disk to a running OS with a USB dock, the device added will be the last disk device, let's say it's /dev/disk2 as an example. The command to clean that disk would look like this...

sudo dd if=/dev/zero of=/dev/disk2 bs=100m

This will write nulls till the end of the disk (where the DDF is) then error out. For a 2TB it can take several hours, it won't be fast.

Be very careful with this, double check to be sure you know which disk is the old RAID disk you want to clean, and unfortunatly, this is at your own risk. 'dd' does not ask for confirmation, once you hit return it runs, so you need to get it righ the first time.

Regards,

--Rich

 

Charles Shelor posted this 19 November 2016

Thanks for the information.  Unfortunately, plugging in the drive in an external enclosure on the USB3 port did not change the items listed in /dev.  A much simpler solution is to use the promise utility to convert to set the drive to "PassThru" mode.  (after deleting logical volume and disk array).  4 of the 6 drives were able to be initialized by Apple Disk Utility on the first try.  2 of the drives failed to initialize, so I set them to "Unconfigured" saved and then set them back to "PassThr" and saved.  They were then initialized by disk utility.

Charles

 

Close