About the checking on the other raids, do these command:
- check if the md1 dev node exists
- Code: Select all
ls -l /dev/md1
- Code: Select all
mknod /dev/md1 b 9 1
- Code: Select all
mdadm --assemble /dev/md1 /dev/sd[abcde]8
same sequence for the partitions 9 which are used to create the device md2:
- Code: Select all
ls -l /dev/md2
- Code: Select all
mknod /dev/md2 b 9 2
- Code: Select all
mdadm --assemble /dev/md2 /dev/sd[abcde]9
check also raid assembled with partitions 5 which are used to create the device md3:
- Code: Select all
ls -l /dev/md3
- Code: Select all
mknod /dev/md3 b 9 3
- Code: Select all
mdadm --assemble /dev/md3 /dev/sd[abcde]5
for partitions 7, as md0 is currently used to build a raid with partitions 2 (on Lacie firmware, partitions 2 is used under normal operating to build md4), do :
- Code: Select all
ls -l /dev/md4
- Code: Select all
mknod /dev/md4 b 9 4
- Code: Select all
mdadm --assemble /dev/md4 /dev/sd[abcde]7
Then post these outputs
- Code: Select all
cat /proc/mdstat
- Code: Select all
mdadm --detail /dev/md[1234]
Now, we can check the file system on these raids by trying to mount the raid devices as the file system is ext3 on them (except for md3 which is the swap partition)
so try to do
- Code: Select all
mdkir /md1 /md2 /md4
mount /dev/md1 /md1
mount /dev/md2 /md2
mount /dev/md4 /md4
Then post this output
- Code: Select all
mount