Package: grub-common
Version: 2.06-3
Severity: normal
X-Debbugs-Cc: tmcconnell...@gmail.com

Dear Maintainer,

What led up to the situation? (sorry for the lengthy explanation) Added this
line GRUB_CMDLINE_LINUX_DEFAULT="quiet radeon.cik_support=0
amdgpu.cik_support=1" to /etc/default/grub as per this link provided by Steam/
Proton (apparently I have a "Sea Islands" card)
https://github.com/ValveSoftware/Proton/wiki/For-AMD-users-having-issues-with-
non-OpenGL-games that states: [Quote] Vulkan requires the amdgpu driver, it
doesn't detect the graphics adapter when using radeon.

If you're experiencing crashes or the game doesn't load at all, it's probably
because your distribution defaults to the radeon driver and Vulkan may be using
Intel's graphics adapter instead (if available).

If that's the case, amdgpu has to be enabled explicitly in the kernel
commandline.

Instructions for Debian/Ubuntu

Open your terminal and run sudo nano /etc/default/grub.

Append to GRUB_CMDLINE_LINUX_DEFAULT:

    radeon.si_support=0 amdgpu.si_support=1 if you have a Southern Islands
card.
    radeon.cik_support=0 amdgpu.cik_support=1 if you have a Sea Islands card.

For example: GRUB_CMDLINE_LINUX_DEFAULT="quiet radeon.cik_support=0
amdgpu.cik_support=1"

Note: You can safely append both variants if you are unsure which family your
card belongs to.

Save with CTRL+X followed by Y and then Enter.

Run sudo update-grub and then reboot your system.

You can check which driver is loaded by running lspci -k:

01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI]
Hawaii PRO [Radeon R9 290/390]
        Subsystem: PC Partner Limited / Sapphire Technology Hawaii PRO [Radeon
R9 290/390]
        Kernel driver in use: amdgpu
        Kernel modules: radeon, amdgpu

If your desktop environment doesn't load, check the kernel log by running sudo
dmesg. If you see that amdgpu is crashing, append amdgpu.dc=0 to the kernel
commandline.[ENDQUOTE]

and I double checked their information with this link
https://wiki.debian.org/AtiHowTo#Drivers. And my sound quit working.

What exactly did you do (or not do) that was effective (or ineffective)? made
the changes as per the instructions listed above and rebooted.

What was the outcome of this action? My sound quit working altogether.

What outcome did you expect instead?
Not to lose sound (music, system sounds etc) from what was supposed to be just
a change to use a different GPU driver. Is there something else I should have
added to Grub to ensure the sound didn't quit working or something I can add to
force it to make it recognize my sound device like it did before? If this
should go to someone else please send this to them, this is more of a question
than an actual bug report.




-- Package-specific info:

*********************** BEGIN /proc/mounts
/dev/sda4 / ext4 rw,relatime,errors=remount-ro 0 0
/dev/sda3 /tmp ext4 rw,relatime 0 0
/dev/sda7 /boot/efi vfat 
rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro
 0 0
/dev/sda5 /var ext4 rw,relatime 0 0
/dev/loop1 /snap/bare/5 squashfs ro,nodev,relatime,errors=continue 0 0
/dev/loop4 /snap/core18/2409 squashfs ro,nodev,relatime,errors=continue 0 0
/dev/loop0 /snap/gtk-common-themes/1519 squashfs 
ro,nodev,relatime,errors=continue 0 0
/dev/loop3 /snap/gimp/383 squashfs ro,nodev,relatime,errors=continue 0 0
/dev/loop5 /snap/gtk-common-themes/1534 squashfs 
ro,nodev,relatime,errors=continue 0 0
/dev/loop2 /snap/gnome-3-28-1804/161 squashfs ro,nodev,relatime,errors=continue 
0 0
/dev/loop6 /snap/snapd/15904 squashfs ro,nodev,relatime,errors=continue 0 0
/dev/loop7 /snap/snapd/16010 squashfs ro,nodev,relatime,errors=continue 0 0
/dev/loop8 /snap/warzone2100/5456 squashfs ro,nodev,relatime,errors=continue 0 0
/dev/sda6 /home ext4 rw,relatime 0 0
/dev/loop9 /snap/warzone2100-videos/2 squashfs 
ro,nodev,relatime,errors=continue 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="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 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  
0040bd2d-97ff-489f-a1e3-d7daf96afa99
else
  search --no-floppy --fs-uuid --set=root 0040bd2d-97ff-489f-a1e3-d7daf96afa99
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=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 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  
0040bd2d-97ff-489f-a1e3-d7daf96afa99
else
  search --no-floppy --fs-uuid --set=root 0040bd2d-97ff-489f-a1e3-d7daf96afa99
fi
insmod png
if background_image /usr/share/desktop-base/homeworld-theme/grub/grub-4x3.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-0040bd2d-97ff-489f-a1e3-d7daf96afa99' {
        load_video
        insmod gzio
        if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
        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  
0040bd2d-97ff-489f-a1e3-d7daf96afa99
        else
          search --no-floppy --fs-uuid --set=root 
0040bd2d-97ff-489f-a1e3-d7daf96afa99
        fi
        echo    'Loading Linux 5.18.0-1-rt-amd64 ...'
        linux   /boot/vmlinuz-5.18.0-1-rt-amd64 
root=UUID=0040bd2d-97ff-489f-a1e3-d7daf96afa99 ro  quiet radeon.cik_support=0 
amdgpu.cik_support=1
        echo    'Loading initial ramdisk ...'
        initrd  /boot/initrd.img-5.18.0-1-rt-amd64
}
submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 
'gnulinux-advanced-0040bd2d-97ff-489f-a1e3-d7daf96afa99' {
        menuentry 'Debian GNU/Linux, with Linux 5.18.0-1-rt-amd64' --class 
debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.18.0-1-rt-amd64-advanced-0040bd2d-97ff-489f-a1e3-d7daf96afa99' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                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  
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                else
                  search --no-floppy --fs-uuid --set=root 
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                fi
                echo    'Loading Linux 5.18.0-1-rt-amd64 ...'
                linux   /boot/vmlinuz-5.18.0-1-rt-amd64 
root=UUID=0040bd2d-97ff-489f-a1e3-d7daf96afa99 ro  quiet radeon.cik_support=0 
amdgpu.cik_support=1
                echo    'Loading initial ramdisk ...'
                initrd  /boot/initrd.img-5.18.0-1-rt-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.18.0-1-rt-amd64 (recovery 
mode)' --class debian --class gnu-linux --class gnu --class os 
$menuentry_id_option 
'gnulinux-5.18.0-1-rt-amd64-recovery-0040bd2d-97ff-489f-a1e3-d7daf96afa99' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                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  
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                else
                  search --no-floppy --fs-uuid --set=root 
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                fi
                echo    'Loading Linux 5.18.0-1-rt-amd64 ...'
                linux   /boot/vmlinuz-5.18.0-1-rt-amd64 
root=UUID=0040bd2d-97ff-489f-a1e3-d7daf96afa99 ro single 
                echo    'Loading initial ramdisk ...'
                initrd  /boot/initrd.img-5.18.0-1-rt-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.17.0-1-rt-amd64' --class 
debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.17.0-1-rt-amd64-advanced-0040bd2d-97ff-489f-a1e3-d7daf96afa99' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                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  
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                else
                  search --no-floppy --fs-uuid --set=root 
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                fi
                echo    'Loading Linux 5.17.0-1-rt-amd64 ...'
                linux   /boot/vmlinuz-5.17.0-1-rt-amd64 
root=UUID=0040bd2d-97ff-489f-a1e3-d7daf96afa99 ro  quiet radeon.cik_support=0 
amdgpu.cik_support=1
                echo    'Loading initial ramdisk ...'
                initrd  /boot/initrd.img-5.17.0-1-rt-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.17.0-1-rt-amd64 (recovery 
mode)' --class debian --class gnu-linux --class gnu --class os 
$menuentry_id_option 
'gnulinux-5.17.0-1-rt-amd64-recovery-0040bd2d-97ff-489f-a1e3-d7daf96afa99' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                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  
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                else
                  search --no-floppy --fs-uuid --set=root 
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                fi
                echo    'Loading Linux 5.17.0-1-rt-amd64 ...'
                linux   /boot/vmlinuz-5.17.0-1-rt-amd64 
root=UUID=0040bd2d-97ff-489f-a1e3-d7daf96afa99 ro single 
                echo    'Loading initial ramdisk ...'
                initrd  /boot/initrd.img-5.17.0-1-rt-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.17.0-1-amd64' --class debian 
--class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.17.0-1-amd64-advanced-0040bd2d-97ff-489f-a1e3-d7daf96afa99' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                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  
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                else
                  search --no-floppy --fs-uuid --set=root 
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                fi
                echo    'Loading Linux 5.17.0-1-amd64 ...'
                linux   /boot/vmlinuz-5.17.0-1-amd64 
root=UUID=0040bd2d-97ff-489f-a1e3-d7daf96afa99 ro  quiet radeon.cik_support=0 
amdgpu.cik_support=1
                echo    'Loading initial ramdisk ...'
                initrd  /boot/initrd.img-5.17.0-1-amd64
        }
        menuentry 'Debian GNU/Linux, with Linux 5.17.0-1-amd64 (recovery mode)' 
--class debian --class gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-5.17.0-1-amd64-recovery-0040bd2d-97ff-489f-a1e3-d7daf96afa99' {
                load_video
                insmod gzio
                if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; 
fi
                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  
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                else
                  search --no-floppy --fs-uuid --set=root 
0040bd2d-97ff-489f-a1e3-d7daf96afa99
                fi
                echo    'Loading Linux 5.17.0-1-amd64 ...'
                linux   /boot/vmlinuz-5.17.0-1-amd64 
root=UUID=0040bd2d-97ff-489f-a1e3-d7daf96afa99 ro single 
                echo    'Loading initial ramdisk ...'
                initrd  /boot/initrd.img-5.17.0-1-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 'Windows Boot Manager (on /dev/sdb1)' --class windows --class os 
$menuentry_id_option 'osprober-efi-3A4C-64E5' {
        insmod part_gpt
        insmod fat
        set root='hd1,gpt1'
        if [ x$feature_platform_search_hint = xy ]; then
          search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt1 
--hint-efi=hd1,gpt1 --hint-baremetal=ahci1,gpt1  3A4C-64E5
        else
          search --no-floppy --fs-uuid --set=root 3A4C-64E5
        fi
        chainloader /efi/Microsoft/Boot/bootmgfw.efi
}
### 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/35_fwupd ###
### END /etc/grub.d/35_fwupd ###

### 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
*********************** END LVM

*********************** BEGIN /dev/disk/by-id
total 0
lrwxrwxrwx 1 root root  9 Jun 15 10:17 ata-HL-DT-ST_DVDRAM_GH22NS50_K0097MN2503 
-> ../../sr0
lrwxrwxrwx 1 root root  9 Jun 15 10:17 ata-WDC_WD10EZEX-00WN4A0_WD-WCC6Y7RJZU7L 
-> ../../sda
lrwxrwxrwx 1 root root 10 Jun 15 10:17 
ata-WDC_WD10EZEX-00WN4A0_WD-WCC6Y7RJZU7L-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Jun 15 10:17 
ata-WDC_WD10EZEX-00WN4A0_WD-WCC6Y7RJZU7L-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Jun 15 10:17 
ata-WDC_WD10EZEX-00WN4A0_WD-WCC6Y7RJZU7L-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 Jun 15 10:17 
ata-WDC_WD10EZEX-00WN4A0_WD-WCC6Y7RJZU7L-part4 -> ../../sda4
lrwxrwxrwx 1 root root 10 Jun 15 10:17 
ata-WDC_WD10EZEX-00WN4A0_WD-WCC6Y7RJZU7L-part5 -> ../../sda5
lrwxrwxrwx 1 root root 10 Jun 15 10:17 
ata-WDC_WD10EZEX-00WN4A0_WD-WCC6Y7RJZU7L-part6 -> ../../sda6
lrwxrwxrwx 1 root root 10 Jun 15 10:17 
ata-WDC_WD10EZEX-00WN4A0_WD-WCC6Y7RJZU7L-part7 -> ../../sda7
lrwxrwxrwx 1 root root  9 Jun 15 10:17 
ata-WDC_WD2500AAJS-00B4A0_WD-WCAT1C870553 -> ../../sdb
lrwxrwxrwx 1 root root 10 Jun 15 10:17 
ata-WDC_WD2500AAJS-00B4A0_WD-WCAT1C870553-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Jun 15 10:17 
ata-WDC_WD2500AAJS-00B4A0_WD-WCAT1C870553-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Jun 15 10:17 
ata-WDC_WD2500AAJS-00B4A0_WD-WCAT1C870553-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 10 Jun 15 10:17 
ata-WDC_WD2500AAJS-00B4A0_WD-WCAT1C870553-part4 -> ../../sdb4
lrwxrwxrwx 1 root root  9 Jun 15 10:17 wwn-0x5001480000000000 -> ../../sr0
lrwxrwxrwx 1 root root  9 Jun 15 10:17 wwn-0x50014ee101e45cce -> ../../sdb
lrwxrwxrwx 1 root root 10 Jun 15 10:17 wwn-0x50014ee101e45cce-part1 -> 
../../sdb1
lrwxrwxrwx 1 root root 10 Jun 15 10:17 wwn-0x50014ee101e45cce-part2 -> 
../../sdb2
lrwxrwxrwx 1 root root 10 Jun 15 10:17 wwn-0x50014ee101e45cce-part3 -> 
../../sdb3
lrwxrwxrwx 1 root root 10 Jun 15 10:17 wwn-0x50014ee101e45cce-part4 -> 
../../sdb4
lrwxrwxrwx 1 root root  9 Jun 15 10:17 wwn-0x50014ee262f9c80d -> ../../sda
lrwxrwxrwx 1 root root 10 Jun 15 10:17 wwn-0x50014ee262f9c80d-part1 -> 
../../sda1
lrwxrwxrwx 1 root root 10 Jun 15 10:17 wwn-0x50014ee262f9c80d-part2 -> 
../../sda2
lrwxrwxrwx 1 root root 10 Jun 15 10:17 wwn-0x50014ee262f9c80d-part3 -> 
../../sda3
lrwxrwxrwx 1 root root 10 Jun 15 10:17 wwn-0x50014ee262f9c80d-part4 -> 
../../sda4
lrwxrwxrwx 1 root root 10 Jun 15 10:17 wwn-0x50014ee262f9c80d-part5 -> 
../../sda5
lrwxrwxrwx 1 root root 10 Jun 15 10:17 wwn-0x50014ee262f9c80d-part6 -> 
../../sda6
lrwxrwxrwx 1 root root 10 Jun 15 10:17 wwn-0x50014ee262f9c80d-part7 -> 
../../sda7
*********************** END /dev/disk/by-id

*********************** BEGIN /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 Jun 15 10:17 0040bd2d-97ff-489f-a1e3-d7daf96afa99 -> 
../../sda4
lrwxrwxrwx 1 root root 10 Jun 15 10:17 22ba5987-559a-46c6-894a-56c0470bfdac -> 
../../sda5
lrwxrwxrwx 1 root root 10 Jun 15 10:17 3A4C-64E5 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Jun 15 10:17 76e7786a-846b-42d5-ba76-b35792a9d3e8 -> 
../../sda2
lrwxrwxrwx 1 root root 10 Jun 15 10:17 80E8600BE86001B0 -> ../../sdb3
lrwxrwxrwx 1 root root 10 Jun 15 10:17 9b55889e-2524-4a72-81fd-870a15ac8999 -> 
../../sda3
lrwxrwxrwx 1 root root 10 Jun 15 10:17 BCDB-DA7E -> ../../sda7
lrwxrwxrwx 1 root root 10 Jun 15 10:17 BCDC-A353 -> ../../sda1
lrwxrwxrwx 1 root root 10 Jun 15 10:17 BE4EFA664EFA173D -> ../../sdb4
lrwxrwxrwx 1 root root 10 Jun 15 10:17 f234261f-73cd-42c1-af28-9b2ee239a15b -> 
../../sda6
*********************** END /dev/disk/by-uuid

-- System Information:
Debian Release: bookworm/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.18.0-1-rt-amd64 (SMP w/2 CPU threads; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages grub-common depends on:
ii  gettext-base        0.21-6
ii  libc6               2.33-7
ii  libdevmapper1.02.1  2:1.02.175-2.1
ii  libefiboot1         37-6
ii  libefivar1          37-6
ii  libfreetype6        2.12.1+dfsg-2
ii  libfuse2            2.9.9-5
ii  liblzma5            5.2.5-2.1

Versions of packages grub-common recommends:
ii  os-prober  1.80

Versions of packages grub-common suggests:
ii  console-setup  1.208
ii  desktop-base   11.0.3
pn  grub-emu       <none>
pn  mtools         <none>
pn  multiboot-doc  <none>
pn  xorriso        <none>

-- no debconf information

Reply via email to