So I screwed up my grub.conf file on a CentOS system and I'm in recovery right now (it's only a test dedicated server). My disks are /dev/sda1 and /dev/sdb1 (RAID 1). Now I need to mount /dev/sda1 and make changes to the grub file, however those changed need to be reflected on the second disk aswell.
How do I mount these RAID disks? I can mount one using mount -t ext3
however it will damage the RAID array.
I've found out already, I had to make the raid active and then mount it with
mount /dev/md1 /mnt/raid
: