On 04/11/15 01:21, Nicolas Tellier wrote: > Hi Phil, and thanks for taking the time to reply to me. > > I'm not sure I understood you advice correctly. > When you say leave off /dev/sdd, do you mean I should recreate a 3 > disks array like this : > mdadm --create --verbose --assume-clean /dev/md0 --level=5 > --metadata=1.2 --chunk=128 --data-offset=262144 --raid-devices=3 > /dev/sda1 /dev/sdb1 /dev/sdc1 No, but lucky you checked > Or a 4 disks array with no mention of /dev/sdd, like this (my instinct > tell me that wouldn't work) : > mdadm --create --verbose --assume-clean /dev/md0 --level=5 > --metadata=1.2 --chunk=128 --data-offset=262144 --raid-devices=4 > /dev/sda1 /dev/sdb1 /dev/sdc1 No, but lucky you checked > Or, as I was thinking originally, to put /dev/sdd as missing, like so : > mdadm --create --verbose --assume-clean /dev/md0 --level=5 > --metadata=1.2 --chunk=128 --data-offset=262144 --raid-devices=4 > /dev/sda1 /dev/sdb1 /dev/sdc1 missing /dev/sdd No, but lucky you checked What he means (I'm pretty sure) is that you should run the command: mdadm --create --verbose --assume-clean /dev/md0 --level=5 --metadata=1.2 --chunk=128 --data-offset=262144 --raid-devices=4 /dev/sda1 /dev/sdb1 /dev/sdc1 missing /dev/sdd but delete "/dev/sdd" from that, because you are using the wrong syntax. Specifically, run this command: mdadm --create --verbose --assume-clean /dev/md0 --level=5 --metadata=1.2 --chunk=128 --data-offset=262144 --raid-devices=4 /dev/sda1 /dev/sdb1 /dev/sdc1 missing The word missing replaces a device name, because the device doesn't exist. It doesn't say that the next device name is missing. > I'm tempted to subscribe to the mailing list, but I'm afraid of the > volume of e-mail I'm going to get. I originally tried to search > through the archives, but couldn't find anything relevant to my case. > I'm looking right now at the "timeout mismatch" results. The list isn't that busy, I would guess around 10 per day. You can always unsubscribe after you solve your problem, but staying subscribed will let you learn a lot about common issues, especially the drive timeout mismatch issues. Regards, Adam [SNIP] -- Adam Goryachev Website Managers www.websitemanagers.com.au -- 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