Hi I upgraded to stretch and the problem persists.
Thankyou. *(Khurram Mahmood)* On 4 February 2017 at 10:54, Khurram Mahmood <makh...@gmail.com> wrote: > Package: grub-pc > Version: 2.02~beta2-22+deb8u1 > Severity: important > > Dear Maintainer, > > *** Reporter, please consider answering these questions, where appropriate > *** > > * What led up to the situation? > > running update-grub I get in /boot/grub/grub.cfg: > [code] initrd /boot/intel-ucode.img[/code] > > The rest output seems fine. > > The result is the unbootable system. Then I have to manually correct this. > The interesting thing is that I have another arch installation, which is > detected okay. > > * What exactly did you do (or not do) that was effective (or > ineffective)? > * What was the outcome of this action? > * What outcome did you expect instead? > > *** End of the template - remove these template lines *** > > > -- Package-specific info: > > *********************** BEGIN /proc/mounts > /dev/sda5 / ext4 rw,relatime,errors=remount-ro,commit=600,data=ordered 0 0 > /dev/sda4 /media/hdd/sda4 ext4 rw,relatime,commit=600,data=ordered 0 0 > /dev/sda2 /media/hdd/sda2 ext4 rw,relatime,commit=600,data=ordered 0 0 > /dev/sda3 /media/hdd/sda3 ext4 rw,relatime,commit=600,data=ordered 0 0 > /dev/sda6 /media/hdd/sda6 ext4 rw,relatime,commit=600,data=ordered 0 0 > *********************** END /proc/mounts > > *********************** 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 default="${next_entry}" > set next_entry= > save_env next_entry > set boot_once=true > else > set default="4" > 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_gpt > insmod ext2 > set root='hd0,gpt5' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt5 > --hint-efi=hd0,gpt5 --hint-baremetal=ahci0,gpt5 b635f48f-40fe-4a54-8fac- > f5953137b67e > else > search --no-floppy --fs-uuid --set=root b635f48f-40fe-4a54-8fac- > f5953137b67e > fi > font="/usr/share/grub/unicode.pf2" > fi > > if loadfont $font ; then > set gfxmode=auto > 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=3 > # Fallback normal timeout code in case the timeout_style feature is > # unavailable. > else > set timeout=3 > fi > fi > ### END /etc/grub.d/00_header ### > > ### BEGIN /etc/grub.d/05_debian_theme ### > insmod part_gpt > insmod ext2 > set root='hd0,gpt5' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt5 > --hint-efi=hd0,gpt5 --hint-baremetal=ahci0,gpt5 b635f48f-40fe-4a54-8fac- > f5953137b67e > else > search --no-floppy --fs-uuid --set=root b635f48f-40fe-4a54-8fac- > f5953137b67e > fi > insmod png > if background_image /usr/share/images/desktop-base/lines-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= > export linux_gfx_mode > menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu > --class os $menuentry_id_option > 'gnulinux-simple-b635f48f-40fe-4a54-8fac-f5953137b67e' > { > load_video > insmod gzio > if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi > insmod part_gpt > insmod ext2 > set root='hd0,gpt5' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt5 > --hint-efi=hd0,gpt5 --hint-baremetal=ahci0,gpt5 b635f48f-40fe-4a54-8fac- > f5953137b67e > else > search --no-floppy --fs-uuid --set=root b635f48f-40fe-4a54-8fac- > f5953137b67e > fi > echo 'Loading Linux 3.16.0-4-amd64 ...' > linux /boot/vmlinuz-3.16.0-4-amd64 > root=UUID=b635f48f-40fe-4a54-8fac-f5953137b67e > ro quiet > echo 'Loading initial ramdisk ...' > initrd /boot/initrd.img-3.16.0-4-amd64 > } > submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option > 'gnulinux-advanced-b635f48f-40fe-4a54-8fac-f5953137b67e' { > menuentry 'Debian GNU/Linux, with Linux 3.16.0-4-amd64' --class > debian --class gnu-linux --class gnu --class os $menuentry_id_option > 'gnulinux-3.16.0-4-amd64-advanced-b635f48f-40fe-4a54-8fac-f5953137b67e' { > load_video > insmod gzio > if [ x$grub_platform = xxen ]; then insmod xzio; insmod > lzopio; fi > insmod part_gpt > insmod ext2 > set root='hd0,gpt5' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt5 --hint-efi=hd0,gpt5 --hint-baremetal=ahci0,gpt5 > b635f48f-40fe-4a54-8fac-f5953137b67e > else > search --no-floppy --fs-uuid --set=root > b635f48f-40fe-4a54-8fac-f5953137b67e > fi > echo 'Loading Linux 3.16.0-4-amd64 ...' > linux /boot/vmlinuz-3.16.0-4-amd64 > root=UUID=b635f48f-40fe-4a54-8fac-f5953137b67e ro quiet > echo 'Loading initial ramdisk ...' > initrd /boot/initrd.img-3.16.0-4-amd64 > } > menuentry 'Debian GNU/Linux, with Linux 3.16.0-4-amd64 (recovery > mode)' --class debian --class gnu-linux --class gnu --class os > $menuentry_id_option > 'gnulinux-3.16.0-4-amd64-recovery-b635f48f-40fe-4a54-8fac-f5953137b67e' > { > load_video > insmod gzio > if [ x$grub_platform = xxen ]; then insmod xzio; insmod > lzopio; fi > insmod part_gpt > insmod ext2 > set root='hd0,gpt5' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt5 --hint-efi=hd0,gpt5 --hint-baremetal=ahci0,gpt5 > b635f48f-40fe-4a54-8fac-f5953137b67e > else > search --no-floppy --fs-uuid --set=root > b635f48f-40fe-4a54-8fac-f5953137b67e > fi > echo 'Loading Linux 3.16.0-4-amd64 ...' > linux /boot/vmlinuz-3.16.0-4-amd64 > root=UUID=b635f48f-40fe-4a54-8fac-f5953137b67e ro single > echo 'Loading initial ramdisk ...' > initrd /boot/initrd.img-3.16.0-4-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/30_os-prober ### > menuentry 'Debian GNU/Linux (8.7) (on /dev/sda2)' --class gnu-linux > --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple- > 3290fac5-347e-440e-a722-f7dbdebc528f' { > insmod part_gpt > insmod ext2 > set root='hd0,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 > --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 3290fac5-347e-440e-a722- > f7dbdebc528f > else > search --no-floppy --fs-uuid --set=root 3290fac5-347e-440e-a722- > f7dbdebc528f > fi > linux /boot/vmlinuz-3.16.0-4-amd64 > root=UUID=3290fac5-347e-440e-a722-f7dbdebc528f > ro quiet > initrd /boot/initrd.img-3.16.0-4-amd64 > } > submenu 'Advanced options for Debian GNU/Linux (8.7) (on /dev/sda2)' > $menuentry_id_option > 'osprober-gnulinux-advanced-3290fac5-347e-440e-a722-f7dbdebc528f' > { > menuentry 'Debian GNU/Linux (on /dev/sda2)' --class gnu-linux > --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/ > vmlinuz-3.16.0-4-amd64--3290fac5-347e-440e-a722-f7dbdebc528f' { > insmod part_gpt > insmod ext2 > set root='hd0,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 > 3290fac5-347e-440e-a722-f7dbdebc528f > else > search --no-floppy --fs-uuid --set=root > 3290fac5-347e-440e-a722-f7dbdebc528f > fi > linux /boot/vmlinuz-3.16.0-4-amd64 > root=UUID=3290fac5-347e-440e-a722-f7dbdebc528f ro quiet > initrd /boot/initrd.img-3.16.0-4-amd64 > } > menuentry 'Debian GNU/Linux, with Linux 3.16.0-4-amd64 (on > /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option > 'osprober-gnulinux-/boot/vmlinuz-3.16.0-4-amd64--3290fac5-347e-440e-a722-f7dbdebc528f' > { > insmod part_gpt > insmod ext2 > set root='hd0,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 > 3290fac5-347e-440e-a722-f7dbdebc528f > else > search --no-floppy --fs-uuid --set=root > 3290fac5-347e-440e-a722-f7dbdebc528f > fi > linux /boot/vmlinuz-3.16.0-4-amd64 > root=UUID=3290fac5-347e-440e-a722-f7dbdebc528f ro quiet > initrd /boot/initrd.img-3.16.0-4-amd64 > } > menuentry 'Debian GNU/Linux, with Linux 3.16.0-4-amd64 (recovery > mode) (on /dev/sda2)' --class gnu-linux --class gnu --class os > $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.16.0-4-amd64-root= > UUID=3290fac5-347e-440e-a722-f7dbdebc528f ro > single-3290fac5-347e-440e-a722-f7dbdebc528f' > { > insmod part_gpt > insmod ext2 > set root='hd0,gpt2' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 > 3290fac5-347e-440e-a722-f7dbdebc528f > else > search --no-floppy --fs-uuid --set=root > 3290fac5-347e-440e-a722-f7dbdebc528f > fi > linux /boot/vmlinuz-3.16.0-4-amd64 > root=UUID=3290fac5-347e-440e-a722-f7dbdebc528f ro single > initrd /boot/initrd.img-3.16.0-4-amd64 > } > } > > menuentry 'Arch (on /dev/sda3)' --class gnu-linux --class gnu --class os > $menuentry_id_option > 'osprober-gnulinux-simple-9ac222ad-16f4-4cf2-9b3e-679e9595941f' > { > insmod part_gpt > insmod ext2 > set root='hd0,gpt3' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt3 > --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 9ac222ad-16f4-4cf2-9b3e- > 679e9595941f > else > search --no-floppy --fs-uuid --set=root 9ac222ad-16f4-4cf2-9b3e- > 679e9595941f > fi > linux /boot/vmlinuz-linux root=/dev/sda3 > initrd /boot/initramfs-linux.img > } > submenu 'Advanced options for Arch (on /dev/sda3)' $menuentry_id_option > 'osprober-gnulinux-advanced-9ac222ad-16f4-4cf2-9b3e-679e9595941f' { > menuentry 'Arch (on /dev/sda3)' --class gnu-linux --class gnu > --class os $menuentry_id_option 'osprober-gnulinux-/boot/ > vmlinuz-linux--9ac222ad-16f4-4cf2-9b3e-679e9595941f' { > insmod part_gpt > insmod ext2 > set root='hd0,gpt3' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 > 9ac222ad-16f4-4cf2-9b3e-679e9595941f > else > search --no-floppy --fs-uuid --set=root > 9ac222ad-16f4-4cf2-9b3e-679e9595941f > fi > linux /boot/vmlinuz-linux root=/dev/sda3 > initrd /boot/initramfs-linux.img > } > menuentry 'Arch (on /dev/sda3)' --class gnu-linux --class gnu > --class os $menuentry_id_option 'osprober-gnulinux-/boot/ > vmlinuz-linux-lts--9ac222ad-16f4-4cf2-9b3e-679e9595941f' { > insmod part_gpt > insmod ext2 > set root='hd0,gpt3' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt3 --hint-efi=hd0,gpt3 --hint-baremetal=ahci0,gpt3 > 9ac222ad-16f4-4cf2-9b3e-679e9595941f > else > search --no-floppy --fs-uuid --set=root > 9ac222ad-16f4-4cf2-9b3e-679e9595941f > fi > linux /boot/vmlinuz-linux-lts root=/dev/sda3 > initrd /boot/initramfs-linux-lts.img > } > } > > menuentry 'Arch1 (on /dev/sda4)' --class gnu-linux --class gnu --class os > $menuentry_id_option > 'osprober-gnulinux-simple-3b4d0faa-8afb-4e26-9205-50c029082e11' > { > insmod part_gpt > insmod ext2 > set root='hd0,gpt4' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt4 > --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 3b4d0faa-8afb-4e26-9205- > 50c029082e11 > else > search --no-floppy --fs-uuid --set=root 3b4d0faa-8afb-4e26-9205- > 50c029082e11 > fi > linux /boot/vmlinuz-linux-lts > root=UUID=3b4d0faa-8afb-4e26-9205-50c029082e11 > rw quiet > initrd /boot/intel-ucode.img > } > submenu 'Advanced options for Arch1 (on /dev/sda4)' $menuentry_id_option > 'osprober-gnulinux-advanced-3b4d0faa-8afb-4e26-9205-50c029082e11' { > menuentry 'Arch Linux (on /dev/sda4)' --class gnu-linux --class > gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/ > vmlinuz-linux-lts--3b4d0faa-8afb-4e26-9205-50c029082e11' { > insmod part_gpt > insmod ext2 > set root='hd0,gpt4' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 > 3b4d0faa-8afb-4e26-9205-50c029082e11 > else > search --no-floppy --fs-uuid --set=root > 3b4d0faa-8afb-4e26-9205-50c029082e11 > fi > linux /boot/vmlinuz-linux-lts > root=UUID=3b4d0faa-8afb-4e26-9205-50c029082e11 > rw quiet > initrd /boot/intel-ucode.img > } > menuentry 'Arch Linux, with Linux linux-lts (on /dev/sda4)' > --class gnu-linux --class gnu --class os $menuentry_id_option > 'osprober-gnulinux-/boot/vmlinuz-linux-lts--3b4d0faa-8afb-4e26-9205-50c029082e11' > { > insmod part_gpt > insmod ext2 > set root='hd0,gpt4' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 > 3b4d0faa-8afb-4e26-9205-50c029082e11 > else > search --no-floppy --fs-uuid --set=root > 3b4d0faa-8afb-4e26-9205-50c029082e11 > fi > linux /boot/vmlinuz-linux-lts > root=UUID=3b4d0faa-8afb-4e26-9205-50c029082e11 > rw quiet > initrd /boot/intel-ucode.img > } > menuentry 'Arch Linux, with Linux linux-lts (fallback initramfs) > (on /dev/sda4)' --class gnu-linux --class gnu --class os > $menuentry_id_option > 'osprober-gnulinux-/boot/vmlinuz-linux-lts--3b4d0faa-8afb-4e26-9205-50c029082e11' > { > insmod part_gpt > insmod ext2 > set root='hd0,gpt4' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 > 3b4d0faa-8afb-4e26-9205-50c029082e11 > else > search --no-floppy --fs-uuid --set=root > 3b4d0faa-8afb-4e26-9205-50c029082e11 > fi > linux /boot/vmlinuz-linux-lts > root=UUID=3b4d0faa-8afb-4e26-9205-50c029082e11 > rw quiet > initrd /boot/intel-ucode.img > } > menuentry 'Arch Linux, with Linux linux (on /dev/sda4)' --class > gnu-linux --class gnu --class os $menuentry_id_option > 'osprober-gnulinux-/boot/vmlinuz-linux--3b4d0faa-8afb-4e26-9205-50c029082e11' > { > insmod part_gpt > insmod ext2 > set root='hd0,gpt4' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 > 3b4d0faa-8afb-4e26-9205-50c029082e11 > else > search --no-floppy --fs-uuid --set=root > 3b4d0faa-8afb-4e26-9205-50c029082e11 > fi > linux /boot/vmlinuz-linux > root=UUID=3b4d0faa-8afb-4e26-9205-50c029082e11 > rw quiet > initrd /boot/intel-ucode.img > } > menuentry 'Arch Linux, with Linux linux (fallback initramfs) (on > /dev/sda4)' --class gnu-linux --class gnu --class os $menuentry_id_option > 'osprober-gnulinux-/boot/vmlinuz-linux--3b4d0faa-8afb-4e26-9205-50c029082e11' > { > insmod part_gpt > insmod ext2 > set root='hd0,gpt4' > if [ x$feature_platform_search_hint = xy ]; then > search --no-floppy --fs-uuid --set=root > --hint-bios=hd0,gpt4 --hint-efi=hd0,gpt4 --hint-baremetal=ahci0,gpt4 > 3b4d0faa-8afb-4e26-9205-50c029082e11 > else > search --no-floppy --fs-uuid --set=root > 3b4d0faa-8afb-4e26-9205-50c029082e11 > fi > linux /boot/vmlinuz-linux > root=UUID=3b4d0faa-8afb-4e26-9205-50c029082e11 > rw quiet > initrd /boot/intel-ucode.img > } > } > > ### 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 /dev/disk/by-id > total 0 > lrwxrwxrwx 1 root root 9 Feb 4 10:42 ata-TOSHIBA_MQ01ABD100_7461P15KT > -> ../../sda > lrwxrwxrwx 1 root root 10 Feb 4 10:43 ata-TOSHIBA_MQ01ABD100_7461P15KT-part1 > -> ../../sda1 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 ata-TOSHIBA_MQ01ABD100_7461P15KT-part2 > -> ../../sda2 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 ata-TOSHIBA_MQ01ABD100_7461P15KT-part3 > -> ../../sda3 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 ata-TOSHIBA_MQ01ABD100_7461P15KT-part4 > -> ../../sda4 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 ata-TOSHIBA_MQ01ABD100_7461P15KT-part5 > -> ../../sda5 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 ata-TOSHIBA_MQ01ABD100_7461P15KT-part6 > -> ../../sda6 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 ata-TOSHIBA_MQ01ABD100_7461P15KT-part7 > -> ../../sda7 > lrwxrwxrwx 1 root root 9 Feb 4 10:42 ata-hp_DVDRAM_GU90N_KLHZ8EF4330 -> > ../../sr0 > lrwxrwxrwx 1 root root 9 Feb 4 10:42 wwn-0x50000395a2181869 -> ../../sda > lrwxrwxrwx 1 root root 10 Feb 4 10:43 wwn-0x50000395a2181869-part1 -> > ../../sda1 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 wwn-0x50000395a2181869-part2 -> > ../../sda2 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 wwn-0x50000395a2181869-part3 -> > ../../sda3 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 wwn-0x50000395a2181869-part4 -> > ../../sda4 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 wwn-0x50000395a2181869-part5 -> > ../../sda5 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 wwn-0x50000395a2181869-part6 -> > ../../sda6 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 wwn-0x50000395a2181869-part7 -> > ../../sda7 > lrwxrwxrwx 1 root root 9 Feb 4 10:42 wwn-0x5001480000000000 -> ../../sr0 > *********************** END /dev/disk/by-id > > *********************** BEGIN /dev/disk/by-uuid > total 0 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 3290fac5-347e-440e-a722-f7dbdebc528f > -> ../../sda2 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 3b4d0faa-8afb-4e26-9205-50c029082e11 > -> ../../sda4 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 9ac222ad-16f4-4cf2-9b3e-679e9595941f > -> ../../sda3 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 aa83abe2-c0f3-4a9e-a375-d055566defd8 > -> ../../sda6 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 b635f48f-40fe-4a54-8fac-f5953137b67e > -> ../../sda5 > lrwxrwxrwx 1 root root 10 Feb 4 10:43 ee74a4d8-cbd5-4cf3-84ec-0275483c9b8f > -> ../../sda7 > *********************** END /dev/disk/by-uuid > > -- System Information: > Debian Release: 8.7 > APT prefers stable-updates > APT policy: (500, 'stable-updates'), (500, 'stable') > Architecture: amd64 (x86_64) > > Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores) > Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) > Shell: /bin/sh linked to /bin/dash > Init: systemd (via /run/systemd/system) > > Versions of packages grub-pc depends on: > ii debconf [debconf-2.0] 1.5.56 > ii grub-common 2.02~beta2-22+deb8u1 > ii grub-pc-bin 2.02~beta2-22+deb8u1 > ii grub2-common 2.02~beta2-22+deb8u1 > ii ucf 3.0030 > > grub-pc recommends no packages. > > grub-pc suggests no packages. > > -- debconf information: > grub-pc/hidden_timeout: false > grub-pc/partition_description: > grub-pc/install_devices_disks_changed: > grub-pc/install_devices_failed: false > grub2/force_efi_extra_removable: false > grub-pc/mixed_legacy_and_grub2: true > grub-pc/chainload_from_menu.lst: true > grub2/device_map_regenerated: > * grub2/linux_cmdline_default: quiet > * grub-pc/install_devices: /dev/disk/by-id/ata-TOSHIBA_ > MQ01ABD100_7461P15KT > grub2/kfreebsd_cmdline: > grub-pc/postrm_purge_boot_grub: false > grub2/kfreebsd_cmdline_default: quiet > grub-pc/install_devices_failed_upgrade: true > * grub2/linux_cmdline: > grub-pc/install_devices_empty: false > grub-pc/disk_description: > grub-pc/timeout: 3 > grub-pc/kopt_extracted: false >