Other Save old HW RAID1 on another system

Hi,
apologies in advance if this is obvious question, however I'm facing currently a situation, where I would need to recover some old data from HDD, which was part of HW RAID1 (Promise HW RAID according to the logs?). Now this drive is connected via USB, however I'm not sure how to proceed now as the degraded raid seems to be read only, unreadable ?

9.3-RELEASE-p43 FreeBSD 9.3-RELEASE-p43

Code:
Oct 13 07:52:52 proxy kernel: GEOM_RAID: Promise: Array Promise created.
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Promise: Force volume start due to timeout.
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Promise: Disk da0 state changed from NONE to ACTIVE.
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Promise: Subdisk PROMISE Array 1:1-da0 state changed from NONE to ACTIVE.
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Promise: Volume started.
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Promise: Volume PROMISE Array 1 state changed from STARTING to DEGRADED.
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Promise: Provider raid/r0 for volume PROMISE Array 1 created.
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 1 read errors total da0[READ(offset=119999967744, length=2048)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 2 read errors total da0[READ(offset=119999998976, length=512)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 3 read errors total da0[READ(offset=119999999488, length=512)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 4 read errors total da0[READ(offset=119999999488, length=512)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 5 read errors total da0[READ(offset=119999999488, length=512)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 6 read errors total da0[READ(offset=512, length=512)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 7 read errors total da0[READ(offset=0, length=512)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 8 read errors total da0[READ(offset=0, length=512)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 9 read errors total da0[READ(offset=119999999488, length=512)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 10 read errors total da0[READ(offset=65536, length=8192)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 11 read errors total da0[READ(offset=8192, length=8192)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 12 read errors total da0[READ(offset=0, length=8192)]
Oct 13 07:53:22 proxy kernel: GEOM_RAID: Read error (5), 13 read errors total da0[READ(offset=262144, length=8192)]

graid status

Code:
   Name    Status  Components
raid/r0  DEGRADED  da0 (ACTIVE (ACTIVE))

mount /dev/raid/r0 /mnt
Code:
mount: /dev/raid/r0: Input/output error
(probably non-sense?)

gpart show shows nothing with relation to raid/r0 nor dev/da0

I'm even not sure about the FS on the disk but should be FreeBSD partition from 2007.
Any ideas please ?
 
I would try to copy the raw disk /dev/da0 using dd(1) ... and determine if the disk is readable or not ... it seems not really ...
 
Back
Top