Based on some poking around my DNS-323, I'd say there is a pretty good chance the md array would work if the disks were hooked up to another linux box. My array is made from two 'regular' linux partitions:
/ # uname -a
Linux NAS-01 2.6.12.6-arm1 #32 Wed Jun 24 15:19:48 CST 2009 armv5tejl GNU/Linux
/ #
/ # df -h
Filesystem Size Used Avail Use% Mounted on
%root% 9.7M 7.9M 1.3M 86% /
/dev/ram0 9.7M 7.9M 1.3M 86% /
/image.cfs 5.7M 5.7M 0 100% /sys/crfs
/dev/md0 1.4T 147G 1.2T 11% /mnt/HD_a2
/dev/sda4 487M 11M 476M 3% /mnt/HD_a4
/dev/sdb4 487M 11M 476M 3% /mnt/HD_b4
/ #
/ # fdisk /dev/sda
The number of cylinders for this disk is set to 182401.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)
Command (m for help): p
Disk /dev/sda: 1500.3 GB, 1500301910016 bytes
255 heads, 63 sectors/track, 182401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sda1 1 66 530113+ 82 Linux swap / Solaris
/dev/sda2 131 182236 1462766445 83 Linux
/dev/sda4 67 130 514080 83 Linux
sdb is identical, but the 'raid' partition types (sda2 and sdb2) are 83 and not linux raid autodetect (fd), which is perfectly legit.
I have funplug installed on my DNS-323, which gives me more of the standard Linux commands to play with but note that the default fdisk on the system dies with a SEGFAULT and so you have to install a replacement, as per this forum post, to get a working copy:
http://www.consumedconsumer.org/2010/06/upgrading-my-dns-323-to-2-x-2-tb-ii_08.html
As you can see (below), the raid array is pretty standard:
/ # cat /proc/mdstat
Personalities : [linear] [raid0] [raid1]
md0 : active raid1 sda2[0] sdb2[1]
1462766336 blocks [2/2] [UU]
unused devices: <none>
I'm not going to pull out these disks and try them in my linux server (spoilsport, I know ;-) ), but I'd say the chances of them 'just working' (even with a minor bit of fiddling with mdadm and fdisk) are high.
A bit of info about reading DNS-323 disks under Windows with some ext2/3 helper apps. Not quite what you are after, but it proves there's no funny format involved: http://www.tomshardware.com/forum/251131-32-recovering-data-link
– Linker3000 – 2011-02-14T19:23:45.123