Bug#741377: grub-pc: The new grub package 2.02~beta2-7 makes the PC unbootable

Singer Michael info at sinweb.de
Tue Mar 11 20:05:14 UTC 2014


Package: grub-pc
Version: 2.00-22
Severity: critical
Justification: breaks the whole system

Dear Maintainer,
After today dist-upgrade, in which the new GRUB package (2:02 ~ beta2-7) was recorded, no longer booted my PC. 
It seemed not even the normal Grub screen, but I ended up in rescue mode. The following error message reported GRUB: 

error: symbol 'grub_isprint' not found 

This condition also was no longer a Einspieln a restore from the previous day fix (containing de GRUB version 2.00-22), which also contained a write-back of the MBR by "dd". I could only solve by reinstalling the system with repeated recording of the backup from the day before the problem. Then the system with the GRUB version 2.00-22 was again bootable. 

Why does GRUB version 2.02 ~ beta2-7 such a critical error? What can be done so as not to encounter this critical error occurs?

Regards 
Michael Singer

-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/mapper/VGsys-LVroot / ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/VGsys-LVhome /home ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/VGsys-LVvar /var ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/VGsys-LVvm /mnt/vm/fast ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/VGdata-LVvm /mnt/vm/normal ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/VGdata-LVmisc /mnt/share/misc ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/VGdata-LVmusic /mnt/share/music ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/VGdata-LVphoto /mnt/share/photo ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/VGdata-LVuserdata /mnt/share/userdata ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/mapper/VGdata-LVvideo /mnt/share/videostream ext4 rw,relatime,errors=remount-ro,data=ordered 0 0
*********************** END /proc/mounts

*********************** BEGIN /boot/grub/device.map
(hd0) /dev/disk/by-id/ata-INTEL_SSDSA2CW120G3_CVPR14850AN7120LGN
(hd1)	/dev/disk/by-id/ata-WDC_WD5000BPKT-00PK4T0_WD-WXV1CB1C7623
(hd2)	/dev/disk/by-id/usb-Ut165_USB2FlashStorage_19015202037250840060-0:0
*********************** 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
  set have_grubenv=true
  load_env
fi
set default="0"

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

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 {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod lvm
insmod ext2
set root='lvm/VGsys-LVroot'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
else
  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=1920x1200
  set gfxpayload=1920x1200
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=de_DE
  insmod gettext
fi
terminal_output gfxterm
insmod part_msdos
insmod lvm
insmod ext2
set root='lvm/VGsys-LVroot'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
else
  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
fi
insmod png
background_image -m stretch /boot/grub/images/redchenille.png
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod lvm
insmod ext2
set root='lvm/VGsys-LVroot'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
else
  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
fi
insmod png
if background_image /boot/grub/images/redchenille.png; then
  true
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 ###
function gfxmode {
	set gfxpayload="${1}"
}
set linux_gfx_mode=
export linux_gfx_mode
menuentry 'siduction 12.1.1 Desperado Reloaded  GNU/Linux' --class siduction --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-4c1c3e9f-c64d-479d-8cee-d06b3a332aed' {
	load_video
	insmod gzio
	insmod part_msdos
	insmod lvm
	insmod ext2
	set root='lvm/VGsys-LVroot'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
	else
	  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
	fi
	echo	'Linux 3.13-6.towo-siduction-amd64 wird geladen …'
	linux	/boot/vmlinuz-3.13-6.towo-siduction-amd64 root=/dev/mapper/VGsys-LVroot ro  quiet
	echo	'Initiale Ramdisk wird geladen …'
	initrd	/boot/initrd.img-3.13-6.towo-siduction-amd64
}
submenu 'Erweiterte Optionen für siduction 12.1.1 Desperado Reloaded  GNU/Linux' $menuentry_id_option 'gnulinux-advanced-4c1c3e9f-c64d-479d-8cee-d06b3a332aed' {
	menuentry 'siduction 12.1.1 Desperado Reloaded  GNU/Linux, mit Linux 3.13-6.towo-siduction-amd64' --class siduction --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13-6.towo-siduction-amd64-advanced-4c1c3e9f-c64d-479d-8cee-d06b3a332aed' {
		load_video
		insmod gzio
		insmod part_msdos
		insmod lvm
		insmod ext2
		set root='lvm/VGsys-LVroot'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
		else
		  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
		fi
		echo	'Linux 3.13-6.towo-siduction-amd64 wird geladen …'
		linux	/boot/vmlinuz-3.13-6.towo-siduction-amd64 root=/dev/mapper/VGsys-LVroot ro  quiet
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13-6.towo-siduction-amd64
	}
	menuentry 'siduction 12.1.1 Desperado Reloaded  GNU/Linux, mit Linux 3.13-5.towo-siduction-amd64' --class siduction --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13-5.towo-siduction-amd64-advanced-4c1c3e9f-c64d-479d-8cee-d06b3a332aed' {
		load_video
		insmod gzio
		insmod part_msdos
		insmod lvm
		insmod ext2
		set root='lvm/VGsys-LVroot'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
		else
		  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
		fi
		echo	'Linux 3.13-5.towo-siduction-amd64 wird geladen …'
		linux	/boot/vmlinuz-3.13-5.towo-siduction-amd64 root=/dev/mapper/VGsys-LVroot ro  quiet
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13-5.towo-siduction-amd64
	}
	menuentry 'siduction 12.1.1 Desperado Reloaded  GNU/Linux, mit Linux 3.13-3.towo-siduction-amd64' --class siduction --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13-3.towo-siduction-amd64-advanced-4c1c3e9f-c64d-479d-8cee-d06b3a332aed' {
		load_video
		insmod gzio
		insmod part_msdos
		insmod lvm
		insmod ext2
		set root='lvm/VGsys-LVroot'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
		else
		  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
		fi
		echo	'Linux 3.13-3.towo-siduction-amd64 wird geladen …'
		linux	/boot/vmlinuz-3.13-3.towo-siduction-amd64 root=/dev/mapper/VGsys-LVroot ro  quiet
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13-3.towo-siduction-amd64
	}
	menuentry 'siduction 12.1.1 Desperado Reloaded  GNU/Linux, mit Linux 3.13-2.towo-siduction-amd64' --class siduction --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13-2.towo-siduction-amd64-advanced-4c1c3e9f-c64d-479d-8cee-d06b3a332aed' {
		load_video
		insmod gzio
		insmod part_msdos
		insmod lvm
		insmod ext2
		set root='lvm/VGsys-LVroot'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
		else
		  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
		fi
		echo	'Linux 3.13-2.towo-siduction-amd64 wird geladen …'
		linux	/boot/vmlinuz-3.13-2.towo-siduction-amd64 root=/dev/mapper/VGsys-LVroot ro  quiet
		echo	'Initiale Ramdisk wird geladen …'
		initrd	/boot/initrd.img-3.13-2.towo-siduction-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 lvm
	insmod ext2
	set root='lvm/VGsys-LVroot'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
	else
	  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
	fi
	linux16	/boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
	insmod part_msdos
	insmod lvm
	insmod ext2
	set root='lvm/VGsys-LVroot'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
	else
	  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
menuentry "Memory test (memtest86+, experimental multiboot)" {
	insmod part_msdos
	insmod lvm
	insmod ext2
	set root='lvm/VGsys-LVroot'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
	else
	  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
	fi
	multiboot	/boot/memtest86+_multiboot.bin
}
menuentry "Memory test (memtest86+, serial console 115200, experimental multiboot)" {
	insmod part_msdos
	insmod lvm
	insmod ext2
	set root='lvm/VGsys-LVroot'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint='lvm/VGsys-LVroot'  4c1c3e9f-c64d-479d-8cee-d06b3a332aed
	else
	  search --no-floppy --fs-uuid --set=root 4c1c3e9f-c64d-479d-8cee-d06b3a332aed
	fi
	multiboot	/boot/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/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### 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  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -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               VGdata
  System ID             
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  2056
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                6
  Open LV               6
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               465.75 GiB
  PE Size               32.00 MiB
  Total PE              14904
  Alloc PE / Size       8640 / 270.00 GiB
  Free  PE / Size       6264 / 195.75 GiB
  VG UUID               vHzDhi-Y8NH-Qqmw-PEbA-kBMG-MhKg-qvJK42
   
  --- Volume group ---
  VG Name               VGsys
  System ID             
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  6099
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                5
  Open LV               5
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               111.78 GiB
  PE Size               32.00 MiB
  Total PE              3577
  Alloc PE / Size       1656 / 51.75 GiB
  Free  PE / Size       1921 / 60.03 GiB
  VG UUID               OzPteI-qgeY-6wkm-2RxG-NRhK-3UU4-cUjt0O
   
  --- Physical volume ---
  PV Name               /dev/sdb1
  VG Name               VGdata
  PV Size               465.76 GiB / not usable 11.02 MiB
  Allocatable           yes 
  PE Size               32.00 MiB
  Total PE              14904
  Free PE               6264
  Allocated PE          8640
  PV UUID               QcfsM2-Tcy8-a5sJ-9ykq-qDbi-Wsze-EzV6Cl
   
  --- Physical volume ---
  PV Name               /dev/sda1
  VG Name               VGsys
  PV Size               111.79 GiB / not usable 8.46 MiB
  Allocatable           yes 
  PE Size               32.00 MiB
  Total PE              3577
  Free PE               1921
  Allocated PE          1656
  PV UUID               FcsSFN-GkvQ-UAPX-cocv-1gg4-4yZf-wsdfZ1
   
  --- Logical volume ---
  LV Path                /dev/VGdata/LVuserdata
  LV Name                LVuserdata
  VG Name                VGdata
  LV UUID                FUBcwV-gNAe-hbCn-xC7j-W1yh-W3YB-5jnu2U
  LV Write Access        read/write
  LV Creation host, time polarfox, 2012-07-08 19:03:13 +0200
  LV Status              available
  # open                 1
  LV Size                10.00 GiB
  Current LE             320
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:1
   
  --- Logical volume ---
  LV Path                /dev/VGdata/LVmusic
  LV Name                LVmusic
  VG Name                VGdata
  LV UUID                dfCZk0-OvlU-HYLI-DCdn-47bx-ySIn-l5l6z1
  LV Write Access        read/write
  LV Creation host, time polarfox, 2012-07-08 19:03:51 +0200
  LV Status              available
  # open                 1
  LV Size                50.00 GiB
  Current LE             1600
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:2
   
  --- Logical volume ---
  LV Path                /dev/VGdata/LVphoto
  LV Name                LVphoto
  VG Name                VGdata
  LV UUID                xVkPlj-VNh9-nn7F-fsCJ-uEfC-guYa-Kdd0QY
  LV Write Access        read/write
  LV Creation host, time polarfox, 2012-07-08 19:04:33 +0200
  LV Status              available
  # open                 1
  LV Size                50.00 GiB
  Current LE             1600
  Segments               3
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:3
   
  --- Logical volume ---
  LV Path                /dev/VGdata/LVmisc
  LV Name                LVmisc
  VG Name                VGdata
  LV UUID                hLS9oV-hcMz-DmMk-VeuT-NwUU-XhP7-SAHfKp
  LV Write Access        read/write
  LV Creation host, time polarfox, 2012-07-08 19:05:04 +0200
  LV Status              available
  # open                 1
  LV Size                60.00 GiB
  Current LE             1920
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:4
   
  --- Logical volume ---
  LV Path                /dev/VGdata/LVvm
  LV Name                LVvm
  VG Name                VGdata
  LV UUID                djwsXc-slWC-T2hs-y8ur-QuFy-G2Vm-ftmVwS
  LV Write Access        read/write
  LV Creation host, time polarfox, 2012-12-03 17:34:29 +0100
  LV Status              available
  # open                 1
  LV Size                80.00 GiB
  Current LE             2560
  Segments               2
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:5
   
  --- Logical volume ---
  LV Path                /dev/VGdata/LVvideo
  LV Name                LVvideo
  VG Name                VGdata
  LV UUID                QmeVou-BHfh-iEgY-cpKf-GBaY-0BD5-wN9RV6
  LV Write Access        read/write
  LV Creation host, time polarfox, 2013-06-22 23:07:29 +0200
  LV Status              available
  # open                 1
  LV Size                20.00 GiB
  Current LE             640
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:6
   
  --- Logical volume ---
  LV Path                /dev/VGsys/LVroot
  LV Name                LVroot
  VG Name                VGsys
  LV UUID                9F2eLL-OdvE-1yT9-0pNw-yVv0-7xk9-28ig02
  LV Write Access        read/write
  LV Creation host, time siduction, 2012-07-08 15:24:37 +0200
  LV Status              available
  # open                 1
  LV Size                6.75 GiB
  Current LE             216
  Segments               7
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:0
   
  --- Logical volume ---
  LV Path                /dev/VGsys/LVhome
  LV Name                LVhome
  VG Name                VGsys
  LV UUID                UAeYS7-mzNE-qDnp-9byZ-bNog-N1XN-lmedc6
  LV Write Access        read/write
  LV Creation host, time siduction, 2012-07-08 15:24:57 +0200
  LV Status              available
  # open                 1
  LV Size                6.50 GiB
  Current LE             208
  Segments               4
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:7
   
  --- Logical volume ---
  LV Path                /dev/VGsys/LVvar
  LV Name                LVvar
  VG Name                VGsys
  LV UUID                qnZmyL-YNcS-MrWd-UytO-pBLJ-k0xL-kPRUAj
  LV Write Access        read/write
  LV Creation host, time siduction, 2012-07-08 15:25:09 +0200
  LV Status              available
  # open                 1
  LV Size                4.50 GiB
  Current LE             144
  Segments               5
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:8
   
  --- Logical volume ---
  LV Path                /dev/VGsys/LVswap
  LV Name                LVswap
  VG Name                VGsys
  LV UUID                2MOK8M-zU7s-nGM5-C0Yk-ec7q-cx7d-PA9mKI
  LV Write Access        read/write
  LV Creation host, time siduction, 2012-07-08 15:25:27 +0200
  LV Status              available
  # open                 2
  LV Size                4.00 GiB
  Current LE             128
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:9
   
  --- Logical volume ---
  LV Path                /dev/VGsys/LVvm
  LV Name                LVvm
  VG Name                VGsys
  LV UUID                hQn32h-S3pD-Dq9J-NBuI-9cBr-X4Q6-SwtCzc
  LV Write Access        read/write
  LV Creation host, time polarfox, 2012-07-08 18:49:38 +0200
  LV Status              available
  # open                 1
  LV Size                30.00 GiB
  Current LE             960
  Segments               2
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           254:10
   
*********************** END LVM

*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root  9 Mar 11 20:15 ata-INTEL_SSDSA2CW120G3_CVPR14850AN7120LGN -> ../../sda
lrwxrwxrwx 1 root root 10 Mar 11 20:15 ata-INTEL_SSDSA2CW120G3_CVPR14850AN7120LGN-part1 -> ../../sda1
lrwxrwxrwx 1 root root  9 Mar 11 20:15 ata-TSSTcorp_CDDVDW_SN-S083F_p9F1379777FFDFKF -> ../../sr0
lrwxrwxrwx 1 root root  9 Mar 11 20:15 ata-WDC_WD5000BPKT-00PK4T0_WD-WXV1CB1C7623 -> ../../sdb
lrwxrwxrwx 1 root root 10 Mar 11 20:15 ata-WDC_WD5000BPKT-00PK4T0_WD-WXV1CB1C7623-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-name-VGdata-LVmisc -> ../../dm-4
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-name-VGdata-LVmusic -> ../../dm-2
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-name-VGdata-LVphoto -> ../../dm-3
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-name-VGdata-LVuserdata -> ../../dm-1
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-name-VGdata-LVvideo -> ../../dm-6
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-name-VGdata-LVvm -> ../../dm-5
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-name-VGsys-LVhome -> ../../dm-7
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-name-VGsys-LVroot -> ../../dm-0
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-name-VGsys-LVswap -> ../../dm-9
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-name-VGsys-LVvar -> ../../dm-8
lrwxrwxrwx 1 root root 11 Mar 11 20:15 dm-name-VGsys-LVvm -> ../../dm-10
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-uuid-LVM-OzPteIqgeY6wkm2RxGNRhK3UU4cUjt0O2MOK8MzU7snGM5C0Ykec7qcx7dPA9mKI -> ../../dm-9
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-uuid-LVM-OzPteIqgeY6wkm2RxGNRhK3UU4cUjt0O9F2eLLOdvE1yT90pNwyVv07xk928ig02 -> ../../dm-0
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-uuid-LVM-OzPteIqgeY6wkm2RxGNRhK3UU4cUjt0OUAeYS7mzNEqDnp9byZbNogN1XNlmedc6 -> ../../dm-7
lrwxrwxrwx 1 root root 11 Mar 11 20:15 dm-uuid-LVM-OzPteIqgeY6wkm2RxGNRhK3UU4cUjt0OhQn32hS3pDDq9JNBuI9cBrX4Q6SwtCzc -> ../../dm-10
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-uuid-LVM-OzPteIqgeY6wkm2RxGNRhK3UU4cUjt0OqnZmyLYNcSMrWdUytOpBLJk0xLkPRUAj -> ../../dm-8
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-uuid-LVM-vHzDhiY8NHQqmwPEbAkBMGMhKgqvJK42FUBcwVgNAehbCnxC7jW1yhW3YB5jnu2U -> ../../dm-1
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-uuid-LVM-vHzDhiY8NHQqmwPEbAkBMGMhKgqvJK42QmeVouBHfhiEgYcpKfGBaY0BD5wN9RV6 -> ../../dm-6
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-uuid-LVM-vHzDhiY8NHQqmwPEbAkBMGMhKgqvJK42dfCZk0OvlUHYLIDCdn47bxySInl5l6z1 -> ../../dm-2
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-uuid-LVM-vHzDhiY8NHQqmwPEbAkBMGMhKgqvJK42djwsXcslWCT2hsy8urQuFyG2VmftmVwS -> ../../dm-5
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-uuid-LVM-vHzDhiY8NHQqmwPEbAkBMGMhKgqvJK42hLS9oVhcMzDmMkVeuTNwUUXhP7SAHfKp -> ../../dm-4
lrwxrwxrwx 1 root root 10 Mar 11 20:15 dm-uuid-LVM-vHzDhiY8NHQqmwPEbAkBMGMhKgqvJK42xVkPljVNh9nn7FfsCJuEfCguYaKdd0QY -> ../../dm-3
lrwxrwxrwx 1 root root  9 Mar 11 20:15 scsi-SATA_INTEL_SSDSA2CW12CVPR14850AN7120LGN -> ../../sda
lrwxrwxrwx 1 root root 10 Mar 11 20:15 scsi-SATA_INTEL_SSDSA2CW12CVPR14850AN7120LGN-part1 -> ../../sda1
lrwxrwxrwx 1 root root  9 Mar 11 20:15 scsi-SATA_WDC_WD5000BPKT-0_WD-WXV1CB1C7623 -> ../../sdb
lrwxrwxrwx 1 root root 10 Mar 11 20:15 scsi-SATA_WDC_WD5000BPKT-0_WD-WXV1CB1C7623-part1 -> ../../sdb1
lrwxrwxrwx 1 root root  9 Mar 11 20:15 wwn-0x50014ee60269bcb7 -> ../../sdb
lrwxrwxrwx 1 root root 10 Mar 11 20:15 wwn-0x50014ee60269bcb7-part1 -> ../../sdb1
lrwxrwxrwx 1 root root  9 Mar 11 20:15 wwn-0x5001517bb277e2ce -> ../../sda
lrwxrwxrwx 1 root root 10 Mar 11 20:15 wwn-0x5001517bb277e2ce-part1 -> ../../sda1
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 Mar 11 20:15 2e3fe9a8-3a62-4ef8-bade-caa10fff9799 -> ../../dm-1
lrwxrwxrwx 1 root root 10 Mar 11 20:15 362002c8-ed18-4400-beb3-de8b12082b39 -> ../../dm-5
lrwxrwxrwx 1 root root 10 Mar 11 20:15 4c1c3e9f-c64d-479d-8cee-d06b3a332aed -> ../../dm-0
lrwxrwxrwx 1 root root 10 Mar 11 20:15 53937654-e6d4-46b9-875b-2be58aaaff40 -> ../../dm-2
lrwxrwxrwx 1 root root 10 Mar 11 20:15 5d5979de-85ac-440a-b647-cac2026b301e -> ../../dm-9
lrwxrwxrwx 1 root root 10 Mar 11 20:15 6b53b830-60f0-4854-aab2-fb5f4ca718bf -> ../../dm-6
lrwxrwxrwx 1 root root 10 Mar 11 20:15 7908654e-8e1e-4f4b-bf02-be45cb1b443e -> ../../dm-8
lrwxrwxrwx 1 root root 10 Mar 11 20:15 81285245-47b1-4070-8b31-8729d4df0b89 -> ../../dm-7
lrwxrwxrwx 1 root root 10 Mar 11 20:15 83ca5d2a-f512-49f1-8fff-09a78ab5e090 -> ../../dm-4
lrwxrwxrwx 1 root root 10 Mar 11 20:15 846e40b2-b669-40be-9433-13fb7840a6f0 -> ../../dm-3
lrwxrwxrwx 1 root root 11 Mar 11 20:15 c778de0a-4564-453b-a6f9-35fdaa08a7d5 -> ../../dm-10
*********************** END /dev/disk/by-uuid

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.13-6.towo-siduction-amd64 (SMP w/8 CPU cores; PREEMPT)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]  1.5.52
ii  grub-common            2.00-22
ii  grub-pc-bin            2.00-22
ii  grub2-common           2.00-22
ii  ucf                    3.0027+nmu1

grub-pc recommends no packages.

grub-pc suggests no packages.

-- debconf information:
  grub-pc/mixed_legacy_and_grub2: true
  grub-pc/chainload_from_menu.lst: true
  grub-pc/disk_description:
  grub-pc/postrm_purge_boot_grub: false
  grub-pc/install_devices_disks_changed:
* grub2/linux_cmdline:
  grub2/kfreebsd_cmdline_default: quiet
  grub-pc/kopt_extracted: false
  grub-pc/partition_description:
  grub2/device_map_regenerated:
  grub-pc/timeout: 5
  grub2/kfreebsd_cmdline:
  grub-pc/install_devices_failed_upgrade: true
* grub2/linux_cmdline_default: quiet
  grub-pc/install_devices_failed: false
  grub-pc/install_devices_empty: false
* grub-pc/install_devices: /dev/disk/by-id/ata-INTEL_SSDSA2CW120G3_CVPR14850AN7120LGN
  grub-pc/hidden_timeout: false



More information about the Pkg-grub-devel mailing list