Не могу установить Grub на программный raid=1
Доброго времени суток. Пытаюсь поставить grub на програмный Raid=1 диски: sda:
dev/sda1 1 66 530113+ fd Linux raid autodetect
/dev/sda2 67 328 2104515 fd Linux raid autodetect
/dev/sda3 329 4245 31463302+ fd Linux raid autodetect
/dev/sda4 4246 30401 210098070 fd Linux raid autodetect
/dev/sdb1 1 66 530113+ fd Linux raid autodetect
/dev/sdb2 67 328 2104515 fd Linux raid autodetect
/dev/sdb3 329 4245 31463302+ fd Linux raid autodetect
/dev/sdb4 4246 30401 210098070 fd Linux raid autodetect
/dev/md0 /boot ext3
/dev/md1 swap
/dev/md2 / ext4
/dev/md3 /home ext4
Ставлю grub:
grub> root (hd0,0)
root (hd0,0)
Filesystem type is ext2fs, partition type 0xfd
grub> setup (hd0)
setup (hd0)
Checking if "/boot/grub/stage1" exists... no
Checking if "/grub/stage1" exists... no
Error 2t: Bad file or directory type
grub> root (hd1,0)
root (hd1,0)
Filesystem type is ext2fs, partition type 0xfd
grub> setup (hd1)
setup (hd1)
Checking if "/boot/grub/stage1" exists... no
Checking if "/grub/stage1" exists... no
Error 2t: Bad file or directory type
В grub-install
grub-install /dev/sda --root-directory=/mnt/root/
The file /mnt/root//boot/grub/stage1 not read correctly.
grub-install /dev/sdb --root-directory=/mnt/root/
/dev/sdb does not have any corresponding BIOS drive.
grub-install /dev/md0 --root-directory=/mnt/root/
/dev/sdb1 does not have any corresponding BIOS drive.
Гугл по ошибке подсказал что такое бывает: 1)Если раздел был отформатирован с 256-битными inode. Исправил, не помогло:
tune2fs -l /dev/sda1 | grep -i 'inode size'
Inode size: 128
[root@livecd centOS]# tune2fs -l /dev/sdb1 | grep -i 'inode size'
Inode size: 128
[root@livecd centOS]# tune2fs -l /dev/md0 | grep -i 'inode size'
Inode size: 128
[root@livecd centOS]#
cat /proc/mdstat
Personalities : [raid1]
md0 : active raid1 sdb1[1] sda1[0]
529536 blocks super 1.2 [2/2] [UU]
md3 : active raid1 sdb4[1] sda4[0]
209966848 blocks super 1.2 [2/2] [UU]
md2 : active raid1 sdb3[1] sda3[0]
31446784 blocks super 1.2 [2/2] [UU]
md1 : active raid1 sdb2[1] sda2[0]
2102400 blocks super 1.2 [2/2] [UU]
unused devices: <none>
В общем идеи кончились, прошу помощи! заранее спасибо)