Bug#942107: grub flickers with ultrawide monitors

Laurent Bigonville bigon at debian.org
Thu Oct 10 14:11:33 BST 2019


Package: grub-pc
Version: 2.04-3
Severity: normal

Hi,

With an ultrawide monitor (21:9 1440p) grub has trouble to draw the
screen, flickers when pressing a key and has a really high imput lag.

When booting, the grub menu at first badly drawn (with parts that looks
no initialized) and then the menu become finally readable.

After that pressing the keys has a an high input lag and when changing
"screen" (from the menu to the cmdline for example) the new screen is
badly drawn again for a few seconds.

The videoinfo command is giving me the correct resolution:
0x1d4 3440x1440x32 (13824)

The bios itself doesn't seem to be displayed at the native resolution of
the screen but is not showing any problem. The early boot of linux (with
plymouth) is then using the native resolution flawlessly.

Kind regards,

Laurent Bigonville

-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/mapper/fornost-root / ext4 rw,seclabel,relatime,discard,errors=remount-ro 0 0
/dev/sda3 /boot ext2 rw,seclabel,relatime 0 0
/dev/mapper/fornost-home /home ext4 rw,seclabel,relatime,discard,stripe=22883 0 0
/dev/mapper/fornost-acng--cache /var/cache/apt-cacher-ng ext4 rw,seclabel,relatime,discard 0 0
/dev/mapper/fornost-docker /var/lib/docker ext4 rw,seclabel,relatime,discard 0 0
/dev/mapper/fornost-sbuildbuild /var/lib/sbuild ext4 rw,seclabel,relatime,discard 0 0
*********************** END /proc/mounts

*********************** BEGIN /boot/grub/device.map
(hd0)	/dev/disk/by-id/ata-OCZ-VERTEX4_OCZ-A5VWZ36E19BK318B
(hd1)	/dev/disk/by-id/lvm-pv-uuid-sdmB32-WXVY-JdCu-XEa2-LBb1-Sqti-DeGjXb
(hd2)	/dev/disk/by-id/ata-SAMSUNG_HD103UJ_S13PJ1LS635674
(hd3)	/dev/disk/by-id/lvm-pv-uuid-7JVrSK-bUYT-WIM3-6EJe-tkI9-GSKF-FGCjsr
*********************** 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 default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
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 part_msdos
insmod lvm
insmod ext2
set root='lvmid/3YgOGd-kRAO-ACvV-aSPE-gDlw-EoVG-XLsdzo/YgQfcS-FCDB-s2gk-Os83-lana-dz7u-neCvn6'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint='lvmid/3YgOGd-kRAO-ACvV-aSPE-gDlw-EoVG-XLsdzo/YgQfcS-FCDB-s2gk-Os83-lana-dz7u-neCvn6'  d4e67c28-06e0-4265-a915-249be1b3cab1
else
  search --no-floppy --fs-uuid --set=root d4e67c28-06e0-4265-a915-249be1b3cab1
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=fr_BE
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=5
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=5
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_gpt
insmod part_msdos
insmod lvm
insmod ext2
set root='lvmid/3YgOGd-kRAO-ACvV-aSPE-gDlw-EoVG-XLsdzo/YgQfcS-FCDB-s2gk-Os83-lana-dz7u-neCvn6'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint='lvmid/3YgOGd-kRAO-ACvV-aSPE-gDlw-EoVG-XLsdzo/YgQfcS-FCDB-s2gk-Os83-lana-dz7u-neCvn6'  d4e67c28-06e0-4265-a915-249be1b3cab1
else
  search --no-floppy --fs-uuid --set=root d4e67c28-06e0-4265-a915-249be1b3cab1
fi
insmod png
if background_image /usr/share/desktop-base/futureprototype-theme/grub/grub-16x9.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-d4e67c28-06e0-4265-a915-249be1b3cab1' {
	load_video
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 --hint='hd0,msdos3'  a94cd385-23fc-42b0-95dd-4390637d9e89
	else
	  search --no-floppy --fs-uuid --set=root a94cd385-23fc-42b0-95dd-4390637d9e89
	fi
	echo	'Loading Linux 5.2.0-3-amd64 ...'
	linux	/vmlinuz-5.2.0-3-amd64 root=/dev/mapper/fornost-root ro  quiet splash selinux=1 security=selinux audit=1
	echo	'Loading initial ramdisk ...'
	initrd	/initrd.img-5.2.0-3-amd64
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-d4e67c28-06e0-4265-a915-249be1b3cab1' {
	menuentry 'Debian GNU/Linux, with Linux 5.2.0-3-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.2.0-3-amd64-advanced-d4e67c28-06e0-4265-a915-249be1b3cab1' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 --hint='hd0,msdos3'  a94cd385-23fc-42b0-95dd-4390637d9e89
		else
		  search --no-floppy --fs-uuid --set=root a94cd385-23fc-42b0-95dd-4390637d9e89
		fi
		echo	'Loading Linux 5.2.0-3-amd64 ...'
		linux	/vmlinuz-5.2.0-3-amd64 root=/dev/mapper/fornost-root ro  quiet splash selinux=1 security=selinux audit=1
		echo	'Loading initial ramdisk ...'
		initrd	/initrd.img-5.2.0-3-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 5.2.0-3-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.2.0-3-amd64-recovery-d4e67c28-06e0-4265-a915-249be1b3cab1' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 --hint='hd0,msdos3'  a94cd385-23fc-42b0-95dd-4390637d9e89
		else
		  search --no-floppy --fs-uuid --set=root a94cd385-23fc-42b0-95dd-4390637d9e89
		fi
		echo	'Loading Linux 5.2.0-3-amd64 ...'
		linux	/vmlinuz-5.2.0-3-amd64 root=/dev/mapper/fornost-root ro single 
		echo	'Loading initial ramdisk ...'
		initrd	/initrd.img-5.2.0-3-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 5.2.0-2-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.2.0-2-amd64-advanced-d4e67c28-06e0-4265-a915-249be1b3cab1' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 --hint='hd0,msdos3'  a94cd385-23fc-42b0-95dd-4390637d9e89
		else
		  search --no-floppy --fs-uuid --set=root a94cd385-23fc-42b0-95dd-4390637d9e89
		fi
		echo	'Loading Linux 5.2.0-2-amd64 ...'
		linux	/vmlinuz-5.2.0-2-amd64 root=/dev/mapper/fornost-root ro  quiet splash selinux=1 security=selinux audit=1
		echo	'Loading initial ramdisk ...'
		initrd	/initrd.img-5.2.0-2-amd64
	}
	menuentry 'Debian GNU/Linux, with Linux 5.2.0-2-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.2.0-2-amd64-recovery-d4e67c28-06e0-4265-a915-249be1b3cab1' {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 --hint='hd0,msdos3'  a94cd385-23fc-42b0-95dd-4390637d9e89
		else
		  search --no-floppy --fs-uuid --set=root a94cd385-23fc-42b0-95dd-4390637d9e89
		fi
		echo	'Loading Linux 5.2.0-2-amd64 ...'
		linux	/vmlinuz-5.2.0-2-amd64 root=/dev/mapper/fornost-root ro single 
		echo	'Loading initial ramdisk ...'
		initrd	/initrd.img-5.2.0-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,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 --hint='hd0,msdos3'  a94cd385-23fc-42b0-95dd-4390637d9e89
	else
	  search --no-floppy --fs-uuid --set=root a94cd385-23fc-42b0-95dd-4390637d9e89
	fi
	linux16	/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 --hint='hd0,msdos3'  a94cd385-23fc-42b0-95dd-4390637d9e89
	else
	  search --no-floppy --fs-uuid --set=root a94cd385-23fc-42b0-95dd-4390637d9e89
	fi
	linux16	/memtest86+.bin console=ttyS0,115200n8
}
menuentry "Memory test (memtest86+, experimental multiboot)" {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 --hint='hd0,msdos3'  a94cd385-23fc-42b0-95dd-4390637d9e89
	else
	  search --no-floppy --fs-uuid --set=root a94cd385-23fc-42b0-95dd-4390637d9e89
	fi
	multiboot	/memtest86+_multiboot.bin
}
menuentry "Memory test (memtest86+, serial console 115200, experimental multiboot)" {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3 --hint='hd0,msdos3'  a94cd385-23fc-42b0-95dd-4390637d9e89
	else
	  search --no-floppy --fs-uuid --set=root a94cd385-23fc-42b0-95dd-4390637d9e89
	fi
	multiboot	/memtest86+_multiboot.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows 10 (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-805ED04C5ED03D1A' {
	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'  805ED04C5ED03D1A
	else
	  search --no-floppy --fs-uuid --set=root 805ED04C5ED03D1A
	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.
### 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
Personalities : [linear] [multipath] [raid0] [raid1] [raid6] [raid5] [raid4] [raid10] 
unused devices: <none>
*********************** END /proc/mdstat

*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx. 1 root root  9 Oct 10 14:56 ata-CT1000MX500SSD1_1909E1EE54CA -> ../../sdc
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 ata-CT1000MX500SSD1_1909E1EE54CA-part1 -> ../../sdc1
lrwxrwxrwx. 1 root root  9 Oct 10 14:56 ata-HL-DT-ST_BD-RE_GGW-H20L_K5893KL3811 -> ../../sr0
lrwxrwxrwx. 1 root root  9 Oct 10 14:56 ata-OCZ-VERTEX4_OCZ-A5VWZ36E19BK318B -> ../../sda
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 ata-OCZ-VERTEX4_OCZ-A5VWZ36E19BK318B-part1 -> ../../sda1
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 ata-OCZ-VERTEX4_OCZ-A5VWZ36E19BK318B-part2 -> ../../sda2
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 ata-OCZ-VERTEX4_OCZ-A5VWZ36E19BK318B-part3 -> ../../sda3
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 ata-OCZ-VERTEX4_OCZ-A5VWZ36E19BK318B-part4 -> ../../sda4
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 ata-OCZ-VERTEX4_OCZ-A5VWZ36E19BK318B-part5 -> ../../sda5
lrwxrwxrwx. 1 root root  9 Oct 10 14:56 ata-SAMSUNG_HD103UJ_S13PJ1LS635674 -> ../../sdb
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 ata-SAMSUNG_HD103UJ_S13PJ1LS635674-part1 -> ../../sdb1
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-name-fornost-acng--cache -> ../../dm-5
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-name-fornost-data -> ../../dm-4
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-name-fornost-docker -> ../../dm-9
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-name-fornost-home -> ../../dm-2
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-name-fornost-jessie_amd64_chroot -> ../../dm-6
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-name-fornost-root -> ../../dm-0
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-name-fornost-sbuildbuild -> ../../dm-8
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-name-fornost-sid_amd64_chroot -> ../../dm-3
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-name-fornost-stretch_amd64_chroot -> ../../dm-7
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-name-fornost-swap_1 -> ../../dm-1
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-uuid-LVM-3YgOGdkRAOACvVaSPEgDlwEoVGXLsdzo3HjImvsZcBwmWRSsjyyB1WamW6qpVk5Z -> ../../dm-3
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-uuid-LVM-3YgOGdkRAOACvVaSPEgDlwEoVGXLsdzoB5RA7lY881pjx4Tf58rDavrxYKwVPnLN -> ../../dm-6
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-uuid-LVM-3YgOGdkRAOACvVaSPEgDlwEoVGXLsdzoF1pW5mRuTbyotiwuo49Ra95e8VBzNkHe -> ../../dm-4
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-uuid-LVM-3YgOGdkRAOACvVaSPEgDlwEoVGXLsdzoXGaItkZ3Ct7h7p9Q0TQ2AEc7JxSuqq17 -> ../../dm-1
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-uuid-LVM-3YgOGdkRAOACvVaSPEgDlwEoVGXLsdzoXY0Lygw5jLG6LzwJ6xLn01puq1SumUTZ -> ../../dm-7
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-uuid-LVM-3YgOGdkRAOACvVaSPEgDlwEoVGXLsdzoYgQfcSFCDBs2gkOs83lanadz7uneCvn6 -> ../../dm-0
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-uuid-LVM-3YgOGdkRAOACvVaSPEgDlwEoVGXLsdzof24smjGDJrQzBNpEeoIXvxTpA8VphaIT -> ../../dm-5
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-uuid-LVM-3YgOGdkRAOACvVaSPEgDlwEoVGXLsdzoftyCI0aQOsc6bPV5CqfKaMziLQYINsjE -> ../../dm-2
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-uuid-LVM-3YgOGdkRAOACvVaSPEgDlwEoVGXLsdzojejzdOQjec5uCYn1CjNdGLwjwrLIM9dW -> ../../dm-9
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 dm-uuid-LVM-3YgOGdkRAOACvVaSPEgDlwEoVGXLsdzou3IIDYY7rl2KpsCFfkRh4V2ooIiQhoPY -> ../../dm-8
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 lvm-pv-uuid-Tt33o0-zpNh-M6mV-4iAA-v2Cc-VyPA-ahTrMc -> ../../sda5
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 lvm-pv-uuid-i1iqKV-bfZL-DK4G-hfOG-iXOw-VyJx-7BCrq6 -> ../../sdc1
lrwxrwxrwx. 1 root root  9 Oct 10 14:56 wwn-0x50024e9001a82750 -> ../../sdb
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 wwn-0x50024e9001a82750-part1 -> ../../sdb1
lrwxrwxrwx. 1 root root  9 Oct 10 14:56 wwn-0x500a0751e1ee54ca -> ../../sdc
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 wwn-0x500a0751e1ee54ca-part1 -> ../../sdc1
lrwxrwxrwx. 1 root root  9 Oct 10 14:56 wwn-0x5e83a97ec28e4392 -> ../../sda
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 wwn-0x5e83a97ec28e4392-part1 -> ../../sda1
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 wwn-0x5e83a97ec28e4392-part2 -> ../../sda2
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 wwn-0x5e83a97ec28e4392-part3 -> ../../sda3
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 wwn-0x5e83a97ec28e4392-part4 -> ../../sda4
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 wwn-0x5e83a97ec28e4392-part5 -> ../../sda5
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 18a6e0fe-43ba-4d7b-ae12-9c736e5a9dd6 -> ../../dm-6
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 1D368FD152A48B29 -> ../../sdb1
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 20FCBD74FCBD44B6 -> ../../sda2
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 2dd79e2d-e90f-4d15-a99a-52e3cdf323dc -> ../../dm-8
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 344496a8-0468-4490-85ad-f9b63ab22068 -> ../../dm-3
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 46524fb4-4c39-4ead-95c6-f1a19cc68f9a -> ../../dm-1
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 553ddda3-f120-41f5-b096-6277e3e32821 -> ../../dm-9
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 7ca278f9-a2c8-4841-a23d-4db0f4966460 -> ../../dm-2
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 805ED04C5ED03D1A -> ../../sda1
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 a94cd385-23fc-42b0-95dd-4390637d9e89 -> ../../sda3
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 ba84f6eb-a06f-4ce6-b11d-e51a4f664c78 -> ../../dm-4
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 cea64436-ddd9-4bc4-a099-c6e8ea80911c -> ../../dm-7
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 d3f57510-4748-499a-825c-8af35cf0426e -> ../../dm-5
lrwxrwxrwx. 1 root root 10 Oct 10 14:56 d4e67c28-06e0-4265-a915-249be1b3cab1 -> ../../dm-0
*********************** END /dev/disk/by-uuid

-- System Information:
Debian Release: bullseye/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'unstable'), (1, 'experimental-debug'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.2.0-3-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_FIRMWARE_WORKAROUND
Locale: LANG=fr_BE.UTF-8, LC_CTYPE=fr_BE.UTF-8 (charmap=UTF-8), LANGUAGE=fr_BE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: SELinux: enabled - Mode: Permissive - Policy name: refpolicy

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]  1.5.73
ii  grub-common            2.04-3
ii  grub-pc-bin            2.04-3
ii  grub2-common           2.04-3
ii  ucf                    3.0038+nmu1

grub-pc recommends no packages.

grub-pc suggests no packages.

-- debconf information:
  grub-pc/install_devices_failed: false
  grub-pc/timeout: 5
  grub-pc/partition_description:
  grub-pc/kopt_extracted: false
* grub2/linux_cmdline:
* grub2/linux_cmdline_default: quiet splash selinux=1 security=selinux audit=1
  grub-pc/install_devices_failed_upgrade: true
  grub-pc/chainload_from_menu.lst: true
* grub-pc/install_devices: /dev/disk/by-id/ata-OCZ-VERTEX4_OCZ-A5VWZ36E19BK318B
  grub2/kfreebsd_cmdline:
  grub-pc/install_devices_disks_changed:
  grub-pc/install_devices_empty: false
  grub2/force_efi_extra_removable: false
  grub2/update_nvram: true
  grub-pc/disk_description:
  grub2/device_map_regenerated:
  grub-pc/hidden_timeout: false
  grub2/kfreebsd_cmdline_default: quiet
  grub-pc/postrm_purge_boot_grub: false
  grub-pc/mixed_legacy_and_grub2: true



More information about the Pkg-grub-devel mailing list