Find the answer to your Linux question:
Results 1 to 2 of 2
There seems to be a problem with Raid on Debian. I got a new Fujitsu Primergy TS 100 S1 server, with hardware Raid (and 2 disks) installed everything nicely over ...
  1. #1
    Just Joined!
    Join Date
    Jul 2008
    Location
    Germany, Lower Saxony, Peine
    Posts
    6

    Debian and Raid - and No Booting

    There seems to be a problem with Raid on Debian. I got a new Fujitsu Primergy TS 100 S1 server, with hardware Raid (and 2 disks) installed everything nicely over the net including GRUB - but when it comes to reboot the system does not boot.

    Is there anybody here who knows about the problem?

    Tia for an answer

    Jörg

  2. #2
    Linux User
    Join Date
    Jan 2005
    Location
    Saint Paul, MN
    Posts
    260
    Did you run the "grub command" yourself, or did you let some installer program do it? I install Linux to servers with both software raid and hardware raid but I do the grub install manually before rebooting. I also assume that the "virtual drive" being presented by your hardware raid is seen as "/dev/sda"...
    Code:
    # for harware raid:
    grub
    setup (hd0)
    quit
    For completeness, for software raid
    Code:
    # Assuming that "/boot" is found on /dev/sda1 and /dev/sdb1
    # for software raid (combining /dev/sda and /dev/sdb):
    grub
    device (hd0) /dev/sda
    root (hd0,0)
    setup (hd0)
    quit
    grub
    device (hd0) /dev/sdb
    root (hd0,0)
    setup (hd0)
    quit
    For the software raid, grub is placed on both of the drives and the BIOS is set to boot from the each drive in order. With software raid the boot sector is not combined.
    Last edited by alf55; 11-06-2010 at 05:01 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •