Package: grub-pc-bin Version: 1.99-8 Severity: normal
Right after the "Welcome to GRUB" line (sorry forgot the exact wording, but it's the inverse-video line that's normally the 2nd thing shown, before clearing the screen and showing the grub menu), grub seems to hang for a while (~7-8 sec?), and then displays: error: fd0 read error ... it then pauses for a while longer, and then continues to the grub menu (after that, everything works normally). This system has no floppy drive at all, so it's not surprising that grub couldn't read anything from it, but it's disconcerting that an error message is displayed -- as the lack of a floppy is not an error (and I think not an uncommon with configuration these days) -- and the apparent long timeout annoying. Thanks, -Miles -- Package-specific info: *********************** BEGIN /proc/mounts /dev/mapper/catnip-root / ext3 rw,noatime,errors=remount-ro,commit=5,barrier=0,data=ordered 0 0 /dev/sda1 /boot ext3 rw,noatime,errors=continue,commit=5,barrier=0,data=ordered 0 0 /dev/mapper/catnip-home /home ext3 rw,noatime,errors=continue,commit=5,barrier=0,data=ordered 0 0 /dev/mapper/catnip-tmp /tmp ext3 rw,noatime,errors=continue,commit=5,barrier=0,data=ordered 0 0 /dev/mapper/catnip-usr /usr ext3 rw,noatime,errors=continue,commit=5,barrier=0,data=ordered 0 0 /dev/mapper/catnip-local /usr/local ext3 rw,noatime,errors=continue,commit=5,barrier=0,data=ordered 0 0 /dev/mapper/catnip-var /var ext3 rw,noatime,errors=continue,commit=5,barrier=0,data=ordered 0 0 *********************** END /proc/mounts *********************** BEGIN /boot/grub/device.map (hd0) /dev/disk/by-id/ata-WDC_WD6400AAKS-22A7B0_WD-WCASY1075481 *********************** END /boot/grub/device.map *********************** BEGIN /boot/grub/grub.cfg # # DO NOT EDIT THIS FILE # # It is automatically generated by 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 } function load_video { insmod vbe insmod vga insmod video_bochs insmod video_cirrus } insmod lvm insmod part_msdos insmod ext2 set root='(catnip-usr)' search --no-floppy --fs-uuid --set=root 372eeb5b-3fb4-4538-978e-d2bf91be2258 if loadfont /share/grub/unicode.pf2 ; then set gfxmode=640x480 load_video insmod gfxterm insmod part_msdos insmod ext2 set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root 9a1085b8-e811-4400-8163-2e9e5582e6d4 set locale_dir=($root)/grub/locale set lang=ja_JP insmod gettext fi terminal_output gfxterm set timeout=5 ### END /etc/grub.d/00_header ### ### BEGIN /etc/grub.d/05_debian_theme ### insmod lvm insmod part_msdos insmod ext2 set root='(catnip-usr)' search --no-floppy --fs-uuid --set=root 372eeb5b-3fb4-4538-978e-d2bf91be2258 insmod png if background_image /share/images/desktop-base/spacefun-grub.png; then set color_normal=light-gray/black set color_highlight=white/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.39-2-amd64' --class debian --class gnu-linux --class gnu --class os { insmod gzio insmod part_msdos insmod ext2 set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root 9a1085b8-e811-4400-8163-2e9e5582e6d4 echo 'Loading Linux 2.6.39-2-amd64 ...' linux /vmlinuz-2.6.39-2-amd64 root=/dev/mapper/catnip-root ro quiet echo 'Loading initial ramdisk ...' initrd /initrd.img-2.6.39-2-amd64 } menuentry 'Debian GNU/Linux, with Linux 2.6.39-2-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os { insmod gzio insmod part_msdos insmod ext2 set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root 9a1085b8-e811-4400-8163-2e9e5582e6d4 echo 'Loading Linux 2.6.39-2-amd64 ...' linux /vmlinuz-2.6.39-2-amd64 root=/dev/mapper/catnip-root ro single echo 'Loading initial ramdisk ...' initrd /initrd.img-2.6.39-2-amd64 } menuentry 'Debian GNU/Linux, with Linux 2.6.38-2-amd64' --class debian --class gnu-linux --class gnu --class os { insmod gzio insmod part_msdos insmod ext2 set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root 9a1085b8-e811-4400-8163-2e9e5582e6d4 echo 'Loading Linux 2.6.38-2-amd64 ...' linux /vmlinuz-2.6.38-2-amd64 root=/dev/mapper/catnip-root ro quiet echo 'Loading initial ramdisk ...' initrd /initrd.img-2.6.38-2-amd64 } menuentry 'Debian GNU/Linux, with Linux 2.6.38-2-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os { insmod gzio insmod part_msdos insmod ext2 set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root 9a1085b8-e811-4400-8163-2e9e5582e6d4 echo 'Loading Linux 2.6.38-2-amd64 ...' linux /vmlinuz-2.6.38-2-amd64 root=/dev/mapper/catnip-root ro single echo 'Loading initial ramdisk ...' initrd /initrd.img-2.6.38-2-amd64 } ### END /etc/grub.d/10_linux ### ### BEGIN /etc/grub.d/20_linux_xen ### ### END /etc/grub.d/20_linux_xen ### ### BEGIN /etc/grub.d/20_memtest86+ ### menuentry "Memory test (memtest86+)" { insmod part_msdos insmod ext2 set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root 9a1085b8-e811-4400-8163-2e9e5582e6d4 linux16 /memtest86+.bin } menuentry "Memory test (memtest86+, serial console 115200)" { insmod part_msdos insmod ext2 set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root 9a1085b8-e811-4400-8163-2e9e5582e6d4 linux16 /memtest86+.bin console=ttyS0,115200n8 } menuentry "Memory test (memtest86+, experimental multiboot)" { insmod part_msdos insmod ext2 set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root 9a1085b8-e811-4400-8163-2e9e5582e6d4 multiboot /memtest86+_multiboot.bin } menuentry "Memory test (memtest86+, serial console 115200, experimental multiboot)" { insmod part_msdos insmod ext2 set root='(hd0,msdos1)' search --no-floppy --fs-uuid --set=root 9a1085b8-e811-4400-8163-2e9e5582e6d4 multiboot /memtest86+_multiboot.bin console=ttyS0,115200n8 } ### END /etc/grub.d/20_memtest86+ ### ### 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 ### ### BEGIN /etc/grub.d/41_custom ### if [ -f $prefix/custom.cfg ]; then source $prefix/custom.cfg; fi ### END /etc/grub.d/41_custom ### *********************** END /boot/grub/grub.cfg *********************** BEGIN /proc/mdstat cat: /proc/mdstat: No such file or directory *********************** END /proc/mdstat *********************** BEGIN LVM --- Volume group --- VG Name catnip System ID Format lvm2 Metadata Areas 1 Metadata Sequence No 31 VG Access read/write VG Status resizable MAX LV 0 Cur LV 7 Open LV 7 Max PV 0 Cur PV 1 Act PV 1 VG Size 595.93 GiB PE Size 4.00 MiB Total PE 152558 Alloc PE / Size 152458 / 595.54 GiB Free PE / Size 100 / 400.00 MiB VG UUID nTDLUm-m3L4-GuHl-WdE2-abGp-j4Og-P0Yd5y --- Physical volume --- PV Name /dev/sda2 VG Name catnip PV Size 595.93 GiB / not usable 2.67 MiB Allocatable yes PE Size 4.00 MiB Total PE 152558 Free PE 100 Allocated PE 152458 PV UUID coI5Th-FJgH-2IHK-Dtj4-xzA9-0M1x-WuB5uq --- Logical volume --- LV Name /dev/catnip/home VG Name catnip LV UUID aB6iR6-cWHq-ichS-jLow-9aMq-0ETT-bhQfrR LV Write Access read/write LV Status available # open 1 LV Size 290.00 GiB Current LE 74240 Segments 1 Allocation contiguous Read ahead sectors auto - currently set to 256 Block device 254:2 --- Logical volume --- LV Name /dev/catnip/local VG Name catnip LV UUID u84sW2-ueFR-CSTf-MKQs-2Cdz-Xp3e-EHthqs LV Write Access read/write LV Status available # open 1 LV Size 282.00 GiB Current LE 72192 Segments 1 Allocation contiguous Read ahead sectors auto - currently set to 256 Block device 254:3 --- Logical volume --- LV Name /dev/catnip/root VG Name catnip LV UUID pmHTNw-8Zmg-5js4-clWF-OnIM-T3G9-sQKHTh LV Write Access read/write LV Status available # open 1 LV Size 300.00 MiB Current LE 75 Segments 1 Allocation contiguous Read ahead sectors auto - currently set to 256 Block device 254:0 --- Logical volume --- LV Name /dev/catnip/swap_1 VG Name catnip LV UUID ZnX2YD-cSUg-W1fN-hpsM-Aq2k-nLEx-GT1i3T LV Write Access read/write LV Status available # open 2 LV Size 5.00 GiB Current LE 1280 Segments 1 Allocation inherit Read ahead sectors auto - currently set to 256 Block device 254:1 --- Logical volume --- LV Name /dev/catnip/tmp VG Name catnip LV UUID FJL8Gm-2IFb-zQW4-Rumc-JjmE-NOLb-MxWvXM LV Write Access read/write LV Status available # open 1 LV Size 392.00 MiB Current LE 98 Segments 1 Allocation contiguous Read ahead sectors auto - currently set to 256 Block device 254:4 --- Logical volume --- LV Name /dev/catnip/usr VG Name catnip LV UUID JvUKhs-bQwh-1hzC-O8an-1ANe-ErEe-A2Ki7q LV Write Access read/write LV Status available # open 1 LV Size 15.00 GiB Current LE 3840 Segments 2 Allocation contiguous Read ahead sectors auto - currently set to 256 Block device 254:5 --- Logical volume --- LV Name /dev/catnip/var VG Name catnip LV UUID 72XS7P-edwS-FJqg-8il3-CTHZ-4EBd-qUVlf8 LV Write Access read/write LV Status available # open 1 LV Size 2.86 GiB Current LE 733 Segments 1 Allocation contiguous Read ahead sectors auto - currently set to 256 Block device 254:6 *********************** END LVM *********************** BEGIN /dev/disk/by-id total 0 lrwxrwxrwx 1 root root 9 Jul 1 23:10 ata-WDC_WD6400AAKS-22A7B0_WD-WCASY1075481 -> ../../sda lrwxrwxrwx 1 root root 10 Jul 1 23:10 ata-WDC_WD6400AAKS-22A7B0_WD-WCASY1075481-part1 -> ../../sda1 lrwxrwxrwx 1 root root 10 Jul 1 23:10 ata-WDC_WD6400AAKS-22A7B0_WD-WCASY1075481-part2 -> ../../sda2 lrwxrwxrwx 1 root root 10 Jul 1 23:10 dm-name-catnip-home -> ../../dm-2 lrwxrwxrwx 1 root root 10 Jul 1 23:10 dm-name-catnip-local -> ../../dm-3 lrwxrwxrwx 1 root root 10 Jul 1 22:13 dm-name-catnip-root -> ../../dm-0 lrwxrwxrwx 1 root root 10 Jul 1 22:13 dm-name-catnip-swap_1 -> ../../dm-1 lrwxrwxrwx 1 root root 10 Jul 1 23:10 dm-name-catnip-tmp -> ../../dm-4 lrwxrwxrwx 1 root root 10 Jul 1 23:10 dm-name-catnip-usr -> ../../dm-5 lrwxrwxrwx 1 root root 10 Jul 1 23:10 dm-name-catnip-var -> ../../dm-6 lrwxrwxrwx 1 root root 10 Jul 1 23:10 dm-uuid-LVM-nTDLUmm3L4GuHlWdE2abGpj4OgP0Yd5y72XS7PedwSFJqg8il3CTHZ4EBdqUVlf8 -> ../../dm-6 lrwxrwxrwx 1 root root 10 Jul 1 23:10 dm-uuid-LVM-nTDLUmm3L4GuHlWdE2abGpj4OgP0Yd5yFJL8Gm2IFbzQW4RumcJjmENOLbMxWvXM -> ../../dm-4 lrwxrwxrwx 1 root root 10 Jul 1 23:10 dm-uuid-LVM-nTDLUmm3L4GuHlWdE2abGpj4OgP0Yd5yJvUKhsbQwh1hzCO8an1ANeErEeA2Ki7q -> ../../dm-5 lrwxrwxrwx 1 root root 10 Jul 1 22:13 dm-uuid-LVM-nTDLUmm3L4GuHlWdE2abGpj4OgP0Yd5yZnX2YDcSUgW1fNhpsMAq2knLExGT1i3T -> ../../dm-1 lrwxrwxrwx 1 root root 10 Jul 1 23:10 dm-uuid-LVM-nTDLUmm3L4GuHlWdE2abGpj4OgP0Yd5yaB6iR6cWHqichSjLow9aMq0ETTbhQfrR -> ../../dm-2 lrwxrwxrwx 1 root root 10 Jul 1 22:13 dm-uuid-LVM-nTDLUmm3L4GuHlWdE2abGpj4OgP0Yd5ypmHTNw8Zmg5js4clWFOnIMT3G9sQKHTh -> ../../dm-0 lrwxrwxrwx 1 root root 10 Jul 1 23:10 dm-uuid-LVM-nTDLUmm3L4GuHlWdE2abGpj4OgP0Yd5yu84sW2ueFRCSTfMKQs2CdzXp3eEHthqs -> ../../dm-3 lrwxrwxrwx 1 root root 9 Jul 1 23:10 scsi-SATA_WDC_WD6400AAKS-_WD-WCASY1075481 -> ../../sda lrwxrwxrwx 1 root root 10 Jul 1 23:10 scsi-SATA_WDC_WD6400AAKS-_WD-WCASY1075481-part1 -> ../../sda1 lrwxrwxrwx 1 root root 10 Jul 1 23:10 scsi-SATA_WDC_WD6400AAKS-_WD-WCASY1075481-part2 -> ../../sda2 lrwxrwxrwx 1 root root 9 Jul 1 23:10 wwn-0x50014ee256fd6341 -> ../../sda lrwxrwxrwx 1 root root 10 Jul 1 23:10 wwn-0x50014ee256fd6341-part1 -> ../../sda1 lrwxrwxrwx 1 root root 10 Jul 1 23:10 wwn-0x50014ee256fd6341-part2 -> ../../sda2 *********************** END /dev/disk/by-id *********************** BEGIN /dev/disk/by-uuid total 0 lrwxrwxrwx 1 root root 10 Jul 1 23:10 372eeb5b-3fb4-4538-978e-d2bf91be2258 -> ../../dm-5 lrwxrwxrwx 1 root root 10 Jul 1 23:10 3d858f9e-4460-48c3-92a6-70af329ba56d -> ../../dm-6 lrwxrwxrwx 1 root root 10 Jul 1 23:10 4478eda8-78cc-4b96-bfdf-25ce41a9670d -> ../../dm-2 lrwxrwxrwx 1 root root 10 Jul 1 23:10 46bfdb6b-a627-4997-8524-ccb982724d52 -> ../../dm-3 lrwxrwxrwx 1 root root 10 Jul 1 22:13 75420521-9858-4bf7-bcd6-9da6fa0c9e17 -> ../../dm-0 lrwxrwxrwx 1 root root 10 Jul 1 23:10 9a1085b8-e811-4400-8163-2e9e5582e6d4 -> ../../sda1 lrwxrwxrwx 1 root root 10 Jul 1 23:10 ade7dc6d-9fa4-469c-af23-d290b888814e -> ../../dm-4 *********************** END /dev/disk/by-uuid -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (101, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.39-2-amd64 (SMP w/4 CPU cores) Locale: LANG=ja_JP.utf8, LC_CTYPE=ja_JP.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages grub-pc-bin depends on: ii grub-common 1.99-8 GRand Unified Bootloader (common f ii libc6 2.13-8 Embedded GNU C Library: Shared lib ii libdevmapper1.02.1 2:1.02.63-3 The Linux Kernel Device Mapper use grub-pc-bin recommends no packages. Versions of packages grub-pc-bin suggests: ii desktop-base 6.0.6 common files for the Debian Deskto -- no debconf information -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org