On Sun, 16 May 2021 21:16:22 -0700 Christopher Thomas <youkai@xxxxxxxxxxxxx> wrote: > Disk /dev/sdd: 2.7 TiB, 3000592982016 bytes, 5860533168 sectors > Disk model: VBOX HARDDISK > Units: sectors of 1 * 512 = 512 bytes > Sector size (logical/physical): 512 bytes / 512 bytes > I/O size (minimum/optimal): 512 bytes / 512 bytes > Disklabel type: gpt > Disk identifier: 9DB2C3F2-F93D-4A6D-AE0E-CE28A8B8C4A2 > > Device Start End Sectors Size Type > /dev/sdd1 34 262177 262144 128M Microsoft reserved > ========== > > Note: I always intended to use the whole disk, so I don't know why I > would have created a single large partition on each, and I don't > recall doing so. But it's been a while, so I just might not be > remembering. Unless you mean "why I *wouldn't* have created"... There isn't a single large partition on each, the partitions are only 128 MB in size, and these are the Microsoft Reserved partitions (MSR)[1]. And a GPT partition table, which shouldn't be there either, if you used whole disks for md RAID. I guess either of these have overwritten your superblocks, which with version 1.2 are stored 4k from the beginning of the device. I'm not sure if Windows would just quietly create these on it's on, but it certainly would if the user opened "Disk Manager", was prompted that there are 3 new uninitialized drives and clicked "OK" to initialize them as GPT. For that exact reason it is not a good idea to use whole disks for RAID, since other OSes see them as empty/uninitialized which they can use as they see fit. As for recovery, you really might need to play with --create; to prevent the chance of data loss, there's a way to experiment using "overlays", keeping the original drives untouched; see [2] for more background on that, and [3] provides steps for your actual situation. Don't forget to use "--assume-clean" and "--readonly". There also might be some filesystem damage on the array, depending on how much and how important were the pieces overwritten at the beginning of all disks by data stored in the 128 MB MSR. [1] https://superuser.com/questions/942065/is-msr-partition-required-on-secondary-gpt-drives [2] https://raid.wiki.kernel.org/index.php/Recovering_a_damaged_RAID [3] https://raid.wiki.kernel.org/index.php/Irreversible_mdadm_failure_recovery -- With respect, Roman