So this is the story.
Client brings in centos linux server with 5 hard disks. 4 of the disks are in linux software raid and 1 of the disks holds the operating system. I am unable to boot up the server and need a rescue cd to see anything.
Using the following command I am able to recreate the raid array:
Normally at this stage I could just mount the raid array with the command:
However, when I try to this I get the following error:
None of the drives are NTFS drives, they all show as LINUX RAID when I fdisk -l.
Any suggestions?
Client brings in centos linux server with 5 hard disks. 4 of the disks are in linux software raid and 1 of the disks holds the operating system. I am unable to boot up the server and need a rescue cd to see anything.
Using the following command I am able to recreate the raid array:
Code:
mdadm --create /dev/md0 -n 4 -c 256 -l 5 -p left-symmetric --assume-clean /dev/sda1 /dev/sdc1 /dev/sdd1 /dev/sde1
Normally at this stage I could just mount the raid array with the command:
Code:
mount /dev/md0 /mntpoint
However, when I try to this I get the following error:
Code:
The device '/dev/md0' doesn't seem to have a valid NTFS. Maybe the wrong device is used? Or the whole disk instead of a partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
None of the drives are NTFS drives, they all show as LINUX RAID when I fdisk -l.
Any suggestions?