Hi Adam, {Please remember to trim repetitive stuff, and interleave.} On 03/07/2017 09:06 AM, Adam Goryachev wrote: > BTW, just some more info I've found... either almost the entire > drives are RAID1 mirrors, or all 4 are RAID1 mirrors: > Other option, they have been re-initialised/zero'd or similar, and > thats why all the data is identical (useless). I was hoping to get a > starting point for where the partition boundaries might have been > .... Search the devices for ext2/3/4 superblocks, like so: dd if=/dev/sdX bs=1M 2>/dev/null |hexdump -C |grep '30 .\+ 53 ef 0' This will take a very long time, and will generate false positives. You probably would want to use screen or tmux to run these in parallel in separate processes. But superblock locations will give you hints as to the rest of data, and make it possible to create partitions that will let you copy stuff off into a new array. Phil -- To unsubscribe from this list: send the line "unsubscribe linux-raid" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html