Linux software raid or md raid can be used as a boot device. But only if that raid device is a RAID-1 or mirror.
As boot loader, grub in this case, does not know anything about software raid that is managed by kernel, it needs to be installed on both devices on that software mirror.… Read the rest
A drive in an Linux md raid array is failed and replaced.
As md raid will not rebuild your array by itself something needs to be done.
Using mdadm, it goes like this:
mdadm - -add /dev/mdX /dev/sdaY
where /dev/mdX is the array that has a failed member, and /dev/sdaX is a partition that needs to be added.
/dev/sda needs to be partitioned before though.
Then it is only a matter of time to see Your arrays being syncronized.
watch -n1 'cat /proc/mdstat'
That array can be in use during that syncronization process.