Florian Philipp <lists <at> binarywings.net> writes:
> > livecd ~ # mdadm --stop /dev/md* > > mdadm: error opening /dev/md: Is a directory > > mdadm: stopped /dev/md1 > > mdadm: stopped /dev/md125 > > mdadm: stopped /dev/md126 > > mdadm: stopped /dev/md127 > > mdadm: stopped /dev/md3 > > mdadm: stopped /dev/md4 >From this web page: http://www.gentoo.org/doc/en/gentoo-x86+raid+lvm2-quickinstall.xml possibly? Code Listing 2.10: Create device nodes and devices livecd ~ # mknod /dev/md1 b 9 1 livecd ~ # mknod /dev/md3 b 9 3 livecd ~ # mknod /dev/md4 b 9 4 livecd ~ # mdadm --create /dev/md1 --level=1 --raid-devices=2 --metadata=0.90 /dev/sda1 /dev/sdb1 mdadm: array /dev/md1 started. livecd ~ # mdadm --create /dev/md3 --level=1 --raid-devices=2 /dev/sda3 /dev/sdb3 mdadm: array /dev/md3 started. livecd ~ # mdadm --create /dev/md4 --level=0 --raid-devices=2 /dev/sda4 /dev/sdb4 mdadm: array /dev/md4 started. Not exactly what I did, as the (omitted forth partition and only used raid 1) but it does not align with the md125-md127 numbers, but all are present..... Comments and suggestions are most welcome! James