Delete /dev/md0
If ever you make a mistake with software raid and you want to start from scratch by removing /dev/md0, the following command is a good place to start.
mdadm -S /dev/md0
Then create the array again as normal using something like
mdadm --create /dev/md0 --level=5 --raid-devices=3 /dev/sd[abc]1






Leave a comment