Quote:
Originally Posted by geekasaurus
~# mdadm --create /dev/md0 --level=1 --raid-devices=2 /dev/sdb2 /dev/sda2
|
OK, so you want to make a RAID array out of
/dev/sda2 and
/dev/sdb2, but...
Quote:
Originally Posted by geekasaurus
/dev/sda2 1920497662 1953523711 16513025 5 Extended
|
Quote:
Originally Posted by geekasaurus
/dev/sdb2 32772094 1953523711 960375809 5 Extended
|
...according to the output from
fdisk, those two partitions are both
extended partitions, which means they cannot be directly used for anything. They are containers for logical partitions.
You need to create one or more logical partitions inside
/dev/sda2 and
/dev/sdb2, like you've already done with
/dev/sd[ab]5 and
/dev/sdb[6-9].