https://bugzilla.novell.com/show_bug.cgi?id=461673 User pgnet.trash@gmail.com added comment https://bugzilla.novell.com/show_bug.cgi?id=461673#c22 --- Comment #22 from pgnet _ <pgnet.trash@gmail.com> 2009-02-04 17:59:44 MST --- md seems to change/use device names (sdX) depending on what & how many drives are attahced; i haven't yet figured out the details. try mounting by UUID, rather than device. e.g., check what devices are in your /boot partition's RAID array, cat /proc/mdstat | grep md0 md0 : active raid1 sda1[0] sdb1[1] ^^^^ ^^^^ then, for those devices, find the correct ID, ls -al /dev/disk/by-id | egrep "sda|sdb" | grep ata | grep -v part lrwxrwxrwx 1 root root 9 2009-01-29 11:17 ata-ST###1 -> ../../sda lrwxrwxrwx 1 root root 9 2009-01-29 11:17 ata-ST###2 -> ../../sdb assuming, e.g., cat /etc/grub.conf setup (hd1) (hd1,0) setup (hd0) (hd0,0) use those IDs to mount by, cat /boot/grub/device.map (hd1) /dev/disk/by-id/ata-ST###2 (hd0) /dev/disk/by-id/ata-ST###1 finish up with, grub --batch < /etc/grub.conf using the above, with the patches applied, my mounts as in /etc/fstab /dev/md0 /boot ext3 acl,user_xattr 1 2 /dev/vg0/ROOT / ext3 acl,user_xattr 1 1 /dev/vgS/SWAP swap swap defaults 0 0 proc /proc proc defaults 0 0 ... work fine. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.