versuche gerade auf meinem Rechner ein Raid 1 mit Debian Sarge einzurichten. Die Festplatten sind in je 3 Partitionen aufgeteilt, welche zusammengefasst werden sollen.
Die Einrichtung des Raids erledige ich schon per Installer, das System wird richtig installiert und startet ohne Probleme. cat /proc/mdstat liefert auch eine positive Meldung.
Um dann bei einem eventuellen Ausfall einer Platte trotzdem anständig booten zu können, wollte ich lilo verwenden.
apt-get remove grub --purge
apt-get install lilo
Dann kurz folgende Configs geschrieben:
/etc/lilo.conf.hda
Code: Alles auswählen
lba32
raid-extra-boot="/dev/hda, /dev/hdc"
boot=/dev/hda
root=/dev/md2
install=/boot/boot-menu.b
append="console=tty0 console=ttyS0,19200n8"
map=/boot/map
prompt
delay=100
timeout=100
vga=normal
default=Linux
image=/vmlinuz
label=Linux
read-only
image=/vmlinuz.old
label=LinuxOLD
read-only
optional
Code: Alles auswählen
lba32
raid-extra-boot="/dev/hda, /dev/hdc"
boot=/dev/hdc
root=/dev/md2
install=/boot/boot-menu.b
append="console=tty0 console=ttyS0,19200n8"
map=/boot/map
prompt
delay=100
timeout=100
vga=normal
default=Linux
image=/vmlinuz
label=Linux
read-only
image=/vmlinuz.old
label=LinuxOLD
read-only
optional
lilo -C /etc/lilo.conf.hda
lilo -C /etc/lilo.conf.hdc
Nach dem Neustart wird aber eine Kernel Panic ausgegeben. Angeblich kann das Root System nicht eingebunden werden. Wo kann das Problem liegen?