nachdem mein dist-upgrade von Lenny auf Squeeze leider jämmerlich versagt hat (erschien nur schwarzer Bildschirm nach dem Booten), habe ich mich zur kompletten Neuinstallation von squeeze auf die Partition /dev/sda3 entschlossen.
Auf /dev/sda1 habe ich eine eigene Boot-Partition, auf die aber nur mein Ubuntu 10.04 zugreifen soll, das wiederum auf /dev/sda2 installiert ist.
Ich benutze also das grub in der Version 0.97 (grub1) aus Ubuntu, mit dem ich bisher problemlos mein altes Lenny mitbooten konnte (war noch auf ext3 installiert). Irgendwie mit dem ext4-FS gehen offenbar meine Probleme mit grub(1) los, ich bekomme immer den Fehler 15 'file not found'; grub2 hatte ich bei squeeze wieder komplett entsorgt.
Hier nun meine /etc/fstab auf meinem neuen squeeze:
Code: Alles auswählen
# /etc/fstab: static file system information.
#
# Use 'vol_id --uuid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# / was on /dev/sda3 during installation
#UUID=824fb220-635e-4d05-b8e1-8ce881d98129 / ext4 errors=remount-ro 0 1
/dev/sda3 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=b66f8bb6-2a8d-422b-92ee-f94ae6fee014 none swap sw 0 0
/dev/scd1 /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/scd0 /media/cdrom1 udf,iso9660 user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
Code: Alles auswählen
## ## End Default Options ##
title Ubuntu 10.04.1 LTS, kernel 2.6.32-27-generic
uuid 391e0d16-1424-47b1-9da2-21df44fc4508
kernel /vmlinuz-2.6.32-27-generic root=UUID=cebc526b-c9ed-4996-a4bf-1ba3bd48362a ro quiet splash
initrd /initrd.img-2.6.32-27-generic
title Ubuntu 10.04.1 LTS, kernel 2.6.32-27-generic (recovery mode)
uuid 391e0d16-1424-47b1-9da2-21df44fc4508
kernel /vmlinuz-2.6.32-27-generic root=UUID=cebc526b-c9ed-4996-a4bf-1ba3bd48362a ro single
initrd /initrd.img-2.6.32-27-generic
#title Debian GNU/Linux, kernel 2.6.32-5-amd64
#root (hd0,2)
#kernel /boot/vmlinuz-2.6.32-5-amd64 root=UUID=58a5e522-f6bf-40e9-8e1c-37949e624437 ro
#kernel /boot/vmlinuz-2.6.32-5-amd64 root=/dev/sda3 ro
#initrd /boot/initrd.img-2.6.32-5-amd64
#title Debian GNU/Linux, kernel 2.6.32-5-amd64 (single-user mode)
#root (hd0,2)
#kernel /boot/vmlinuz-2.6.32-5-amd64 root=UUID=58a5e522-f6bf-40e9-8e1c-37949e624437 ro single
#kernel /boot/vmlinuz-2.6.32-5-amd64 root=/dev/sda3 ro
#initrd /boot/initrd.img-2.6.32-5-amd64
title Debian GNU/Linux, kernel 2.6.32-5-amd64
root (hd0,2)
#kernel /boot/vmlinuz-2.6.32-5-amd64 root=UUID=824fb220-635e-4d05-b8e1-8ce881d98129 ro
kernel /boot/vmlinuz-2.6.32-5-amd64 root=/dev/sda3 ro
initrd /boot/initrd.img-2.6.32-5-amd64
title Debian GNU/Linux, kernel 2.6.32-5-amd64 (single-user mode)
root (hd0,2)
#kernel /boot/vmlinuz-2.6.32-5-amd64 root=UUID=824fb220-635e-4d05-b8e1-8ce881d98129 ro single
kernel /boot/vmlinuz-2.6.32-5-amd64 root=/dev/sda3 ro single
initrd /boot/initrd.img-2.6.32-5-amd64
Wo ist nur mein Fehler? Oder ist grub1 wirklich inkompatibel mit ext4 ?
Irgendwie wird mir bei grub auch nur ein ext2-System erkannt!?
Andreas