I have created a raid 5 array with mdadm. I created partitions on all five of the disks created a raid-5 array with mdadm on these five partitions).
Everything seems fine however when i try to mount the array i get a complaint about there being no superblock.
When i google for the solution all i get are hundereds of people trying to recover a defective array, all i need is a simple (at least i think it would be?) command to create this superblock (preferably without having to go through the 8 hour initialisation again).
edit: The command used to create the array: (yes sdc is supposed to be left out)
sudo mdadm --create --verbose /dev/md0 --level=5 --raid-devices=5 /dev/sda1 /dev/sdb1 /dev/sdd1 /dev/sde1 /dev/sdf1
The command used to partition the array:
sudo mkfs.ext4 /dev/md0 -v -T largefile4 -m 0 -L Raid
The command with which i tried to mount the array:
sudo mount -t ext4 /dev/md0p1 /raid