Bug#567637: grub-probe: error: unknown filesystem -- fails to boot from ext3

nightolo antonio at dyne.org
Sat Jan 30 11:15:46 UTC 2010


Package: grub-pc
Version: 1.98~20100128-1
Severity: grave
Justification: renders package unusable

After an update from grub-pc_1.98~20100115-1_i386.deb (current testing version) to
grub-pc_1.98~20100128-1_i386.deb, the system does not boot anymore; grub says
"unknown filesystem" and drop me to the rescue> shell, where I cannot do
anything (no "setup" or "boot")

The following is my fdisk -l:
----
   Device Boot      Start         End      Blocks   Id  System
/dev/hda1               1         784     6297448+  8e  Linux LVM
/dev/hda2             785        3844    24579450   8e  Linux LVM
/dev/hda3   *        5884        7230    10819777+  83  Linux
/dev/hda4            3845        5883    16378267+   5  Extended
/dev/hda5            3845        3907      506016   82  Linux swap / Solaris
/dev/hda6            3908        5732    14659281   8e  Linux LVM
----

/ is on /dev/hda3

Unfortunately after the upgrade grub-probe is unable to find the filesystem, so
the update fails with this message (full message in the attachment):

----
/usr/sbin/grub-probe: error: unknown filesystem.
Auto-detection of a filesystem module failed.
Please specify the module with the option `--modules' explicitly.
----

And if I do grub-probe -t fs / manually it returns the same error (unknown
filesystem), downgrading fixes the issue.

The attachment contains all the various combnations of grub-probe outputs under
20100115 (working) and 20100128 (non-working), I've also included both grub.cfg
and menu.lst, a mount(1) output and the full error message returned as output of
"apt-get install grub-pc" on unstable.

Please let me know if you need any other info.

The severity of this "bug" is grave because the package is completely unusable
and there is no way to boot the system unless I downgrade the package.`

Cheers
Antonio

-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/disk/by-uuid/9d011af3-a825-4c0b-89d0-a34dc9f34780 / ext3 rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/vg0-homes /home ext3 rw,relatime,errors=remount-ro,data=ordered 0 0
*********************** END /proc/mounts

*********************** BEGIN /boot/grub/device.map
(hd0)	/dev/hda
*********************** END /boot/grub/device.map

*********************** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
    saved_entry=${chosen}
    save_env saved_entry
  fi
}
insmod ext2
set root=(hd0,3)
search --no-floppy --fs-uuid --set 9d011af3-a825-4c0b-89d0-a34dc9f34780
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 locale_dir=/boot/grub/locale
set lang=en
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod ext2
set root=(hd0,3)
search --no-floppy --fs-uuid --set 9d011af3-a825-4c0b-89d0-a34dc9f34780
insmod png
if background_image /boot/grub/moreblue-orbit-grub.png ; then
  set color_normal=black/black
  set color_highlight=magenta/black
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry "Debian GNU/Linux, with Linux 2.6.30-2-686" {
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 9d011af3-a825-4c0b-89d0-a34dc9f34780
	echo	Loading Linux 2.6.30-2-686 ...
	linux	/boot/vmlinuz-2.6.30-2-686 root=UUID=9d011af3-a825-4c0b-89d0-a34dc9f34780 ro  quiet
	echo	Loading initial ramdisk ...
	initrd	/boot/initrd.img-2.6.30-2-686
}
menuentry "Debian GNU/Linux, with Linux 2.6.30-2-686 (recovery mode)" {
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 9d011af3-a825-4c0b-89d0-a34dc9f34780
	echo	Loading Linux 2.6.30-2-686 ...
	linux	/boot/vmlinuz-2.6.30-2-686 root=UUID=9d011af3-a825-4c0b-89d0-a34dc9f34780 ro single 
	echo	Loading initial ramdisk ...
	initrd	/boot/initrd.img-2.6.30-2-686
}
menuentry "Debian GNU/Linux, with Linux 2.6.26-2-686" {
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 9d011af3-a825-4c0b-89d0-a34dc9f34780
	echo	Loading Linux 2.6.26-2-686 ...
	linux	/boot/vmlinuz-2.6.26-2-686 root=UUID=9d011af3-a825-4c0b-89d0-a34dc9f34780 ro  quiet
	echo	Loading initial ramdisk ...
	initrd	/boot/initrd.img-2.6.26-2-686
}
menuentry "Debian GNU/Linux, with Linux 2.6.26-2-686 (recovery mode)" {
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 9d011af3-a825-4c0b-89d0-a34dc9f34780
	echo	Loading Linux 2.6.26-2-686 ...
	linux	/boot/vmlinuz-2.6.26-2-686 root=UUID=9d011af3-a825-4c0b-89d0-a34dc9f34780 ro single 
	echo	Loading initial ramdisk ...
	initrd	/boot/initrd.img-2.6.26-2-686
}
menuentry "Debian GNU/Linux, with Linux 2.6.26-1-686" {
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 9d011af3-a825-4c0b-89d0-a34dc9f34780
	echo	Loading Linux 2.6.26-1-686 ...
	linux	/boot/vmlinuz-2.6.26-1-686 root=UUID=9d011af3-a825-4c0b-89d0-a34dc9f34780 ro  quiet
	echo	Loading initial ramdisk ...
	initrd	/boot/initrd.img-2.6.26-1-686
}
menuentry "Debian GNU/Linux, with Linux 2.6.26-1-686 (recovery mode)" {
	insmod ext2
	set root=(hd0,3)
	search --no-floppy --fs-uuid --set 9d011af3-a825-4c0b-89d0-a34dc9f34780
	echo	Loading Linux 2.6.26-1-686 ...
	linux	/boot/vmlinuz-2.6.26-1-686 root=UUID=9d011af3-a825-4c0b-89d0-a34dc9f34780 ro single 
	echo	Loading initial ramdisk ...
	initrd	/boot/initrd.img-2.6.26-1-686
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
*********************** END /boot/grub/grub.cfg

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-2-686 (SMP w/1 CPU core)
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]    1.5.28          Debian configuration management sy
ii  grub-common              1.98~20100115-1 GRand Unified Bootloader, version 
ii  libc6                    2.10.2-5        Embedded GNU C Library: Shared lib
ii  ucf                      3.0025          Update Configuration File: preserv

grub-pc recommends no packages.

Versions of packages grub-pc suggests:
ii  desktop-base                  5.0.5      common files for the Debian Deskto

-- debconf-show failed
-------------- next part --------------
A non-text attachment was scrubbed...
Name: grub-upgrade.tar
Type: application/x-tar
Size: 532480 bytes
Desc: not available
URL: <http://lists.alioth.debian.org/pipermail/pkg-grub-devel/attachments/20100130/b9d1061d/attachment-0001.tar>


More information about the Pkg-grub-devel mailing list