Rescue RAID 1 HDD

Sheratan

Well-known member
Another server came to my house (again)

It's CentOS 5, 32 bit. It has 2x500GB WDC Black. RAID 1.

The problem is, the 1st HDD was broke. And when I try to boot from the 2nd HDD, it said:

GRUB Hard disk error

Code:
grub>find /grub/stage1
grub>root (hd0,0)
grub>setup (hd0)

But still no luck.

Any idea?

Thanks.
 
Most likely grub is struggling because it thinks your second drive is the first drive, when its not.

Try

Code:
grub-install /dev/sdb
device (hd0) /dev/sdb
root (hd0,0)
setup (hd0)
 
Top Bottom