Bug#765833: grub2: default entry ignored

Pierre Frenkiel pierre.frenkiel at gmail.com
Sat Oct 18 14:49:02 UTC 2014


Package: grub2
Version: 2.02~beta2-14
Severity: important

Dear Maintainer,


   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
     ineffective)?
     I set the default entries in /etc/default/grub and in /boot/grub/grub.conf
     i.e "default=8"
   * What was the outcome of this action?
     entry ignored: at boot, the default is the 1st menuentry
   * What outcome did you expect instead?
     I expect to automatic boot to the menuentry number 8, without interaction.


-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/disk/by-uuid/9ec0c76d-c1b3-4684-b951-dc6db26bf49c / ext4 rw,noatime,nodiratime,errors=remount-ro,data=ordered 0 0
/dev/sda1 /w fuseblk rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096 0 0
/dev/sdb1 /d3 ext4 rw,noatime,nodiratime,data=ordered 0 0
/dev/sdc1 /d5 ext4 rw,noatime,nodiratime,nodelalloc,data=journal 0 0
/dev/sda3 /data ext4 rw,noatime,nodiratime,errors=remount-ro,data=ordered 0 0
/dev/sda5 /we fuseblk rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096 0 0
/dev/sdi1 /d7 fuseblk rw,nosuid,nodev,noatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096 0 0
/dev/sdd1 /d2 ext4 rw,noatime,nodiratime,nodelalloc,data=journal 0 0
/dev/sdf1 /d6 fuseblk rw,nosuid,nodev,noatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096 0 0
/dev/sdh1 /d8 fuseblk rw,nosuid,nodev,noatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096 0 0
/dev/sdg1 /d9 ext4 rw,noatime,nodiratime,nodelalloc,data=journal 0 0
/dev/sde1 /d10 fuseblk rw,nosuid,nodev,noatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096 0 0
*********************** END /proc/mounts

*********************** BEGIN /boot/grub/device.map
(hd0)	/dev/disk/by-id/ata-ST3250410AS_6RY5TCG3
(hd1)	/dev/disk/by-id/ata-ST3750640AS_5QD4W093
(hd2)	/dev/disk/by-id/ata-WDC_WD20EARS-00MVWB0_WD-WMAZA5133597
(hd3)	/dev/disk/by-id/ata-ST31000528AS_6VPCRD7C
(hd4)	/dev/disk/by-id/ata-ST1000LM024_HN-M101MBB_S2ZPJ9BCC50478
(hd5)	/dev/disk/by-id/ata-ST1000LM024_HN-M101MBB_S2TPJ9BC821271
(hd6)	/dev/disk/by-id/usb-WD_My_Passport_0820_575841314139334E34363734-0:0
(hd7)	/dev/disk/by-id/usb-Linux_File-Stor_Gadget_3230204F6374-0:0
(hd8)	/dev/disk/by-id/ata-WDC_WD10TPVT-00U4RT1_WD-WXM1A71F9395
*********************** 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
if [ "${next_entry}" ] ; then
   set defaul="8"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set defaul="8"
fi

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 ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  9ec0c76d-c1b3-4684-b951-dc6db26bf49c
else
  search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=1024x768
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=-1
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
play 480 440 1
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  9ec0c76d-c1b3-4684-b951-dc6db26bf49c
else
  search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
fi
insmod png
if background_image /usr/share/images/desktop-base/joy-grub.png; then
  set color_normal=white/black
  set color_highlight=black/white
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=keep
export linux_gfx_mode
menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-9ec0c76d-c1b3-4684-b951-dc6db26bf49c' {
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  9ec0c76d-c1b3-4684-b951-dc6db26bf49c
	else
	  search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
	fi
	echo	'Loading Linux 3.13-1-686-pae ...'
	linux	/boot/vmlinuz-3.13-1-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro scsi_mod.inq_timeout=20 video=vesa:off vga=normal splash
	echo	'Loading initial ramdisk ...'
	initrd	/boot/initrd.img-3.13-1-686-pae
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-9ec0c76d-c1b3-4684-b951-dc6db26bf49c' {
	menuentry 'Debian GNU/Linux, with Linux 3.13-1-686-pae' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13-1-686-pae-advanced-9ec0c76d-c1b3-4684-b951-dc6db26bf49c' {
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  9ec0c76d-c1b3-4684-b951-dc6db26bf49c
		else
		  search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
		fi
		echo	'Loading Linux 3.13-1-686-pae ...'
		linux	/boot/vmlinuz-3.13-1-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro scsi_mod.inq_timeout=20 vga=775 splash
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13-1-686-pae
	}
	menuentry 'Debian GNU/Linux, with Linux 3.13-1-686-pae (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13-1-686-pae-recovery-9ec0c76d-c1b3-4684-b951-dc6db26bf49c' {
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  9ec0c76d-c1b3-4684-b951-dc6db26bf49c
		else
		  search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
		fi
		echo	'Loading Linux 3.13-1-686-pae ...'
		linux	/boot/vmlinuz-3.13-1-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro single scsi_mod.inq_timeout=20 vga=775
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13-1-686-pae
	}
	menuentry 'Debian GNU/Linux, with Linux 3.10-3-686-pae' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.10-3-686-pae-advanced-9ec0c76d-c1b3-4684-b951-dc6db26bf49c' {
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  9ec0c76d-c1b3-4684-b951-dc6db26bf49c
		else
		  search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
		fi
		echo	'Loading Linux 3.10-3-686-pae ...'
		linux	/boot/vmlinuz-3.10-3-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro scsi_mod.inq_timeout=20 vga=775 splash
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.10-3-686-pae
	}
	menuentry 'Debian GNU/Linux, with Linux 3.10-3-686-pae (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.10-3-686-pae-recovery-9ec0c76d-c1b3-4684-b951-dc6db26bf49c' {
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  9ec0c76d-c1b3-4684-b951-dc6db26bf49c
		else
		  search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
		fi
		echo	'Loading Linux 3.10-3-686-pae ...'
		linux	/boot/vmlinuz-3.10-3-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro single scsi_mod.inq_timeout=20 vga=775
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.10-3-686-pae
	}
}

### 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,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  9ec0c76d-c1b3-4684-b951-dc6db26bf49c
	else
	  search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
	fi
	linux16	/boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  9ec0c76d-c1b3-4684-b951-dc6db26bf49c
	else
	  search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
menuentry "Memory test (memtest86+, experimental multiboot)" {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  9ec0c76d-c1b3-4684-b951-dc6db26bf49c
	else
	  search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
	fi
	multiboot	/boot/memtest86+_multiboot.bin
}
menuentry "Memory test (memtest86+, serial console 115200, experimental multiboot)" {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2 --hint='hd0,msdos2'  9ec0c76d-c1b3-4684-b951-dc6db26bf49c
	else
	  search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
	fi
	multiboot	/boot/memtest86+_multiboot.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Microsoft Windows XP Professionnel (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-208869087ECFDCBF' {
	insmod part_msdos
	insmod ntfs
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  208869087ECFDCBF
	else
	  search --no-floppy --fs-uuid --set=root 208869087ECFDCBF
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}
### 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.
menuentry "dhcp" {
   load_video
   insmod gzio
   insmod part_msdos
   insmod ext2
   set root='(hd0,msdos2)'
   search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
   echo	'Loading Linux 3.13-1-686-pae ...'
   linux	/boot/vmlinuz-3.13-1-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro scsi_mod.inq_timeout=20 vga=775  LOC!dhcp!
   echo	'Loading initial ramdisk ...'
   initrd	/boot/initrd.img-3.13-1-686-pae
}
menuentry "none" {
   load_video
   insmod gzio
   insmod part_msdos
   insmod ext2
   set root='(hd0,msdos2)'
   search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
   echo	'Loading Linux 3.13-1-686-pae ...'
   linux	/boot/vmlinuz-3.13-1-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro scsi_mod.inq_timeout=20 vga=775  LOC!none!
   echo	'Loading initial ramdisk ...'
   initrd	/boot/initrd.img-3.13-1-686-pae
}
menuentry "pfrb" {
   load_video
   insmod gzio
   insmod part_msdos
   insmod ext2
   set root='(hd0,msdos2)'
   search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
   echo	'Loading Linux 3.13-1-686-pae ...'
   linux	/boot/vmlinuz-3.13-1-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro scsi_mod.inq_timeout=20 vga=775  LOC!pfrb!
   echo	'Loading initial ramdisk ...'
   initrd	/boot/initrd.img-3.13-1-686-pae
}
menuentry "senao-open" {
   load_video
   insmod gzio
   insmod part_msdos
   insmod ext2
   set root='(hd0,msdos2)'
   search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
   echo	'Loading Linux 3.13-1-686-pae ...'
   linux	/boot/vmlinuz-3.13-1-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro scsi_mod.inq_timeout=20 vga=775  LOC!senao-open!
   echo	'Loading initial ramdisk ...'
   initrd	/boot/initrd.img-3.13-1-686-pae
}
menuentry "senao-psk" {
   load_video
   insmod gzio
   insmod part_msdos
   insmod ext2
   set root='(hd0,msdos2)'
   search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
   echo	'Loading Linux 3.13-1-686-pae ...'
   linux	/boot/vmlinuz-3.13-1-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro scsi_mod.inq_timeout=20 vga=775  LOC!senao-psk!
   echo	'Loading initial ramdisk ...'
   initrd	/boot/initrd.img-3.13-1-686-pae
}
menuentry "senao-wep" {
   load_video
   insmod gzio
   insmod part_msdos
   insmod ext2
   set root='(hd0,msdos2)'
   search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
   echo	'Loading Linux 3.13-1-686-pae ...'
   linux	/boot/vmlinuz-3.13-1-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro scsi_mod.inq_timeout=20 vga=775  LOC!senao-wep!
   echo	'Loading initial ramdisk ...'
   initrd	/boot/initrd.img-3.13-1-686-pae
}
menuentry "wlan" {
   load_video
   insmod gzio
   insmod part_msdos
   insmod ext2
   set root='(hd0,msdos2)'
   search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
   echo	'Loading Linux 3.13-1-686-pae ...'
   linux	/boot/vmlinuz-3.13-1-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro scsi_mod.inq_timeout=20 vga=775  LOC!wlan!
   echo	'Loading initial ramdisk ...'
   initrd	/boot/initrd.img-3.13-1-686-pae
}
menuentry "wlan1" {
   load_video
   insmod gzio
   insmod part_msdos
   insmod ext2
   set root='(hd0,msdos2)'
   search --no-floppy --fs-uuid --set=root 9ec0c76d-c1b3-4684-b951-dc6db26bf49c
   echo	'Loading Linux 3.13-1-686-pae ...'
   linux	/boot/vmlinuz-3.13-1-686-pae root=UUID=9ec0c76d-c1b3-4684-b951-dc6db26bf49c ro scsi_mod.inq_timeout=20 vga=775  LOC!wlan1!
   echo	'Loading initial ramdisk ...'
   initrd	/boot/initrd.img-3.13-1-686-pae
}
### 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 /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root  9 Oct 18 16:36 ata-HL-DT-ST_DVDRAM_GH22LS50_K1C9AB85347 -> ../../sr0
lrwxrwxrwx 1 root root  9 Oct 18 16:36 ata-ST1000LM024_HN-M101MBB_S2TPJ9BC821271 -> ../../sdh
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-ST1000LM024_HN-M101MBB_S2TPJ9BC821271-part1 -> ../../sdh1
lrwxrwxrwx 1 root root  9 Oct 18 16:36 ata-ST1000LM024_HN-M101MBB_S2ZPJ9BCC50478 -> ../../sdg
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-ST1000LM024_HN-M101MBB_S2ZPJ9BCC50478-part1 -> ../../sdg1
lrwxrwxrwx 1 root root  9 Oct 18 16:36 ata-ST31000528AS_6VPCRD7C -> ../../sdd
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-ST31000528AS_6VPCRD7C-part1 -> ../../sdd1
lrwxrwxrwx 1 root root  9 Oct 18 16:36 ata-ST3250410AS_6RY5TCG3 -> ../../sda
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-ST3250410AS_6RY5TCG3-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-ST3250410AS_6RY5TCG3-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-ST3250410AS_6RY5TCG3-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-ST3250410AS_6RY5TCG3-part4 -> ../../sda4
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-ST3250410AS_6RY5TCG3-part5 -> ../../sda5
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-ST3250410AS_6RY5TCG3-part6 -> ../../sda6
lrwxrwxrwx 1 root root  9 Oct 18 16:36 ata-ST3750640AS_5QD4W093 -> ../../sdb
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-ST3750640AS_5QD4W093-part1 -> ../../sdb1
lrwxrwxrwx 1 root root  9 Oct 18 16:36 ata-WDC_WD10TPVT-00U4RT1_WD-WXM1A71F9395 -> ../../sdi
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-WDC_WD10TPVT-00U4RT1_WD-WXM1A71F9395-part1 -> ../../sdi1
lrwxrwxrwx 1 root root  9 Oct 18 16:36 ata-WDC_WD20EARS-00MVWB0_WD-WMAZA5133597 -> ../../sdc
lrwxrwxrwx 1 root root 10 Oct 18 16:36 ata-WDC_WD20EARS-00MVWB0_WD-WMAZA5133597-part1 -> ../../sdc1
lrwxrwxrwx 1 root root  9 Oct 18 16:36 usb-Linux_File-Stor_Gadget_3230204F6374-0:0 -> ../../sdf
lrwxrwxrwx 1 root root 10 Oct 18 16:36 usb-Linux_File-Stor_Gadget_3230204F6374-0:0-part1 -> ../../sdf1
lrwxrwxrwx 1 root root 10 Oct 18 16:36 usb-Linux_File-Stor_Gadget_3230204F6374-0:0-part2 -> ../../sdf2
lrwxrwxrwx 1 root root 10 Oct 18 16:36 usb-Linux_File-Stor_Gadget_3230204F6374-0:0-part3 -> ../../sdf3
lrwxrwxrwx 1 root root  9 Oct 18 16:36 usb-WD_My_Passport_0820_575841314139334E34363734-0:0 -> ../../sde
lrwxrwxrwx 1 root root 10 Oct 18 16:36 usb-WD_My_Passport_0820_575841314139334E34363734-0:0-part1 -> ../../sde1
lrwxrwxrwx 1 root root  9 Oct 18 16:36 wwn-0x50004cf20822857b -> ../../sdh
lrwxrwxrwx 1 root root 10 Oct 18 16:36 wwn-0x50004cf20822857b-part1 -> ../../sdh1
lrwxrwxrwx 1 root root  9 Oct 18 16:36 wwn-0x50004cf209436b3f -> ../../sdg
lrwxrwxrwx 1 root root 10 Oct 18 16:36 wwn-0x50004cf209436b3f-part1 -> ../../sdg1
lrwxrwxrwx 1 root root  9 Oct 18 16:36 wwn-0x5000c50036d3222b -> ../../sdd
lrwxrwxrwx 1 root root 10 Oct 18 16:36 wwn-0x5000c50036d3222b-part1 -> ../../sdd1
lrwxrwxrwx 1 root root  9 Oct 18 16:36 wwn-0x5001480000000000 -> ../../sr0
lrwxrwxrwx 1 root root  9 Oct 18 16:36 wwn-0x50014ee058234300 -> ../../sdc
lrwxrwxrwx 1 root root 10 Oct 18 16:36 wwn-0x50014ee058234300-part1 -> ../../sdc1
lrwxrwxrwx 1 root root  9 Oct 18 16:36 wwn-0x50014ee2b0de3080 -> ../../sdi
lrwxrwxrwx 1 root root 10 Oct 18 16:36 wwn-0x50014ee2b0de3080-part1 -> ../../sdi1
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 Oct 18 16:36 1C4BCE5729D69CC3 -> ../../sdi1
lrwxrwxrwx 1 root root 10 Oct 18 16:36 208869087ECFDCBF -> ../../sda1
lrwxrwxrwx 1 root root 10 Oct 18 16:36 4247f489-e244-4a30-8458-7daad1903404 -> ../../sdg1
lrwxrwxrwx 1 root root 10 Oct 18 16:36 468AE9432484013D -> ../../sdf1
lrwxrwxrwx 1 root root 10 Oct 18 16:36 57EE0AF95AEB22FE -> ../../sda5
lrwxrwxrwx 1 root root 10 Oct 18 16:36 5b33f3bd-b03b-47de-9f6e-0b04096e05ca -> ../../sda3
lrwxrwxrwx 1 root root 10 Oct 18 16:36 60c4562b-9c8f-4e82-ae58-2db298bc0a43 -> ../../sdc1
lrwxrwxrwx 1 root root 10 Oct 18 16:36 619879fe-f6a1-45f3-ba2a-cc12a05ecc34 -> ../../sdf3
lrwxrwxrwx 1 root root 10 Oct 18 16:36 70d8e3f7-010d-4a11-b265-5727509735ed -> ../../sdb1
lrwxrwxrwx 1 root root 10 Oct 18 16:36 9ec0c76d-c1b3-4684-b951-dc6db26bf49c -> ../../sda2
lrwxrwxrwx 1 root root 10 Oct 18 16:36 F474B7AA74B76DCC -> ../../sde1
lrwxrwxrwx 1 root root 10 Oct 18 16:36 FA7861F47861B055 -> ../../sdh1
lrwxrwxrwx 1 root root 10 Oct 18 16:36 a8a30c0c-d4a3-4cd4-a313-088dbebdb48d -> ../../sdd1
lrwxrwxrwx 1 root root 10 Oct 18 16:36 eb52ae2b-88d2-410f-8411-238a37de6515 -> ../../sda6
*********************** END /dev/disk/by-uuid

-- System Information:
Debian Release: jessie/sid
  APT prefers testing-updates
  APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 3.13-1-686-pae (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages grub2 depends on:
ii  grub-common  2.02~beta2-14
ii  grub-pc      2.02~beta2-14

grub2 recommends no packages.

grub2 suggests no packages.

-- no debconf information



More information about the Pkg-grub-devel mailing list