mein System bootet nicht mehr, das Grub-Menü fährt noch hoch, nach der Auswahl bleibt dann alles hängen und er läd das System nicht.
Lief vorher ohne Probleme, ich habe ein Software-Raid1 und habe größere Platten eingebaut, also die Installation von einer LiveCD auf ein USB-HD gebackupt und auf den neuen Platten wieder eingespielt, chroot gemacht und grub-install ohne Fehlermeldungen.
Mein grub.cfg (Grub2 - Debian testing):
Code: Alles auswählen
### BEGIN /etc/grub.d/00_header ###
set default=0
insmod raid
insmod mdraid
insmod ext2
set root=(md0)
search --no-floppy --fs-uuid --set f667115f-ec88-4ac2-ab1f-76ac92d47e00
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
fi
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
menuentry "Debian GNU/Linux, Linux 2.6.30-1-amd64" {
insmod raid
insmod mdraid
insmod ext2
set root=(md0)
search --no-floppy --fs-uuid --set f667115f-ec88-4ac2-ab1f-76ac92d47e00
linux /boot/vmlinuz-2.6.30-1-amd64 root=/dev/md0 ro quiet
initrd /boot/initrd.img-2.6.30-1-amd64
}
menuentry "Debian GNU/Linux, Linux 2.6.30-1-amd64 (recovery mode)" {
insmod raid
insmod mdraid
insmod ext2
set root=(md0)
search --no-floppy --fs-uuid --set f667115f-ec88-4ac2-ab1f-76ac92d47e00
linux /boot/vmlinuz-2.6.30-1-amd64 root=/dev/md0 ro single
initrd /boot/initrd.img-2.6.30-1-amd64
}
### END /etc/grub.d/10_linux ###
Gruss,
DS