Update Mageia Grub can't find kernels too many sym links

This forum is dedicated to basic help and support :

Ask here your questions about basic installation and usage of Mageia. For example you may post here all your questions about getting Mageia isos and installing it, configuring your printer, using your word processor etc.

Try to ask your questions in the right sub-forum with as much details as you can gather. the more precise the question will be, the more likely you are to get a useful answer

Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Nov 30th, '21, 06:07

Upon recent upgrade of my Mageia 8 install I get this error after update and reboot.


Code: Select all
[      0.978687]  pci 0000:00:07.0: DPC: RP PIO log size 0 is invalid
/init: line 153: /user/lib/systemd-udevd: Too many levels of symbolic links
failed to send request to update environment: No such file or directory


I updated and came back to the machine 2 days later and got this error.

I had to drop back two kernels in the list to be able to get a bootable system here. I am booted into 5.10.70-desktop-1.mga8.

It was running 5.10.75-desktop-1.mga8 then updated to 5.10.78-desktop-1.mga8 I have not actually tried to go back past 5.10.70-desktop-1.mga8 to see if it will boot earlier kernels. This install is pretty old. This started as Cauldron and when Mageia 8 was released I set it to the release. I do have this problem on 2 other recent updates on other machines.






[/code]

This is contents of /etc/default/grub

Code: Select all
cat /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788"
GRUB_DEFAULT=saved
GRUB_DISABLE_OS_PROBER=false
GRUB_DISABLE_RECOVERY=false
GRUB_DISABLE_SUBMENU=n
GRUB_DISTRIBUTOR=Mageia
GRUB_ENABLE_CRYPTODISK=y
GRUB_GFXMODE=1024x768x32
GRUB_GFXPAYLOAD_LINUX=auto
GRUB_SAVEDEFAULT=true
GRUB_TERMINAL_OUTPUT=gfxterm
GRUB_THEME=/boot/grub2/themes/maggy/theme.txt
GRUB_TIMEOUT=18



If there is further info please let me know what to get for you. I am not very knowledgeable but it seems like this is saying something off with systemd? That error message.

I will include other info later as it exceeds character limit for the post.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Nov 30th, '21, 06:08

This is what is currently in this /boot/grub2/grub.cfg

Code: Select all
 cat /boot/grub2/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set pager=1

if [ -f ${config_directory}/grubenv ]; then
  load_env -f ${config_directory}/grubenv
elif [ -s $prefix/grubenv ]; then
  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="${saved_entry}"
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,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  d26aec20-402c-4a75-9f9b-7db97ef01f41
else
  search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=1024x768x32
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_GB
  insmod gettext
fi
terminal_output gfxterm
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  d26aec20-402c-4a75-9f9b-7db97ef01f41
else
  search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
fi
insmod gfxmenu
loadfont ($root)/boot/grub2/themes/maggy/MageiaLogoBold-16.pf2
loadfont ($root)/boot/grub2/themes/maggy/MageiaLogoBold-20.pf2
loadfont ($root)/boot/grub2/themes/maggy/MageiaLogoBold-28.pf2
loadfont ($root)/boot/grub2/themes/maggy/MageiaLogoRegular-20.pf2
insmod png
set theme=($root)/boot/grub2/themes/maggy/theme.txt
export theme
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=18
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=18
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/01_users ###
if [ -f ${prefix}/user.cfg ]; then
  source ${prefix}/user.cfg
  if [ -n "${GRUB2_PASSWORD}" ]; then
    set superusers="root"
    export superusers
    password_pbkdf2 root ${GRUB2_PASSWORD}
  fi
fi
### END /etc/grub.d/01_users ###

### BEGIN /etc/grub.d/08_fallback_counting ###
insmod increment
# Check if boot_counter exists and boot_success=0 to activate this behaviour.
if [ -n "${boot_counter}" -a "${boot_success}" = "0" ]; then
  # if countdown has ended, choose to boot rollback deployment,
  # i.e. default=1 on OSTree-based systems.
  if  [ "${boot_counter}" = "0" -o "${boot_counter}" = "-1" ]; then
    set default=1
    set boot_counter=-1
  # otherwise decrement boot_counter
  else
    decrement boot_counter
  fi
  save_env boot_counter
fi
### END /etc/grub.d/08_fallback_counting ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Mageia' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-simple-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
   load_video
   set gfxpayload=auto
   insmod gzio
   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  d26aec20-402c-4a75-9f9b-7db97ef01f41
   else
     search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
   fi
   linux   /boot/vmlinuz-5.10.78-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
   initrd   /boot/initrd-5.10.78-desktop-1.mga8.img
}
submenu 'Advanced options for Mageia' $menuentry_id_option 'gnulinux-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   menuentry 'Mageia (5.10.78-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.78-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.78-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.78-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.78-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.78-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.78-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.78-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.75-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.75-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.75-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.75-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.75-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.75-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.75-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.75-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.70-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.70-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.70-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.70-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.70-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.70-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.70-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.70-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.62-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.62-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.62-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.62-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.62-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.62-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.62-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.62-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.60-desktop-2.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.60-desktop-2.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.60-desktop-2.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.60-desktop-2.mga8.img
   }
   menuentry 'Mageia (5.10.60-desktop-2.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.60-desktop-2.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.60-desktop-2.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.60-desktop-2.mga8.img
   }
   menuentry 'Mageia (5.10.48-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.48-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.48-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.48-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.48-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.48-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.48-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.48-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.33-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.33-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.33-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.33-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.33-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.33-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.33-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.33-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.30-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.30-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.30-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.30-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.30-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.30-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.30-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.30-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.27-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.27-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.27-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.27-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.27-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.27-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.27-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.27-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.25-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.25-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.25-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.25-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.25-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.25-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.25-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.25-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.11-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.11-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.11-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.11-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.11-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.11-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.11-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.11-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.1-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.1-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.1-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.10.1-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.10.1-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.10.1-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.10.1-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.10.1-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.9.11-desktop-3.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.9.11-desktop-3.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.9.11-desktop-3.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.9.11-desktop-3.mga8.img
   }
   menuentry 'Mageia (5.9.11-desktop-3.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.9.11-desktop-3.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.9.11-desktop-3.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.9.11-desktop-3.mga8.img
   }
   menuentry 'Mageia (5.9.8-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.9.8-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.9.8-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.9.8-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.9.8-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.9.8-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.9.8-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.9.8-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.9.6-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.9.6-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.9.6-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.9.6-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.9.6-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.9.6-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.9.6-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.9.6-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.9.1-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.9.1-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.9.1-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.9.1-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.9.1-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.9.1-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.9.1-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.9.1-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.9.0-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.9.0-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.9.0-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.9.0-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.9.0-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.9.0-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.9.0-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.9.0-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.14-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.14-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.14-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.8.14-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.14-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.14-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.14-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.8.14-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.13-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.13-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.13-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.8.13-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.13-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.13-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.13-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.8.13-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.12-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.12-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.12-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.8.12-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.12-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.12-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.12-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.8.12-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.10-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.10-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.10-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.8.10-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.10-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.10-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.10-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.8.10-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.9-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.9-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.9-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.8.9-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.9-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.9-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.9-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.8.9-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.8-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.8-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.8-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.8.8-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.8-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.8-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.8-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.8.8-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.7-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.7-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.7-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.8.7-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.7-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.7-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.7-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.8.7-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.3-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.3-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.3-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.8.3-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.3-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.3-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.3-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.8.3-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.8.2-desktop-2.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.2-desktop-2.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.2-desktop-2.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.8.2-desktop-2.mga8.img
   }
   menuentry 'Mageia (5.8.2-desktop-2.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.8.2-desktop-2.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.8.2-desktop-2.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.8.2-desktop-2.mga8.img
   }
   menuentry 'Mageia (5.7.9-desktop-1.mga8) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.7.9-desktop-1.mga8-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.7.9-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-5.7.9-desktop-1.mga8.img
   }
   menuentry 'Mageia (5.7.9-desktop-1.mga8) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-5.7.9-desktop-1.mga8-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-5.7.9-desktop-1.mga8 root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-5.7.9-desktop-1.mga8.img
   }
   menuentry 'Mageia (desktop) 8' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-desktop-advanced-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
   savedefault
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-desktop root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro  splash quiet noiswmd resume=UUID=d2b92597-b850-413a-8738-c907d5d631a5 audit=0 vga=788
           initrd   /boot/initrd-desktop.img
   }
   menuentry 'Mageia (desktop) 8 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-desktop-recovery-d26aec20-402c-4a75-9f9b-7db97ef01f41' {
           load_video
           set gfxpayload=auto
           insmod gzio
           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  d26aec20-402c-4a75-9f9b-7db97ef01f41
           else
             search --no-floppy --fs-uuid --set=root d26aec20-402c-4a75-9f9b-7db97ef01f41
           fi
           linux   /boot/vmlinuz-desktop root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 ro failsafe
           initrd   /boot/initrd-desktop.img
   }
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/10_reset_boot_success ###
# Hiding the menu is ok if last boot was ok or if this is a first boot attempt to boot the entry
if [ "${boot_success}" = "1" -o "${boot_indeterminate}" = "1" ]; then
  set menu_hide_ok=1
else
  set menu_hide_ok=0
fi
# Reset boot_indeterminate after a successful boot
if [ "${boot_success}" = "1" ] ; then
  set boot_indeterminate=0
# Avoid boot_indeterminate causing the menu to be hidden more than once
elif [ "${boot_indeterminate}" = "1" ]; then
  set boot_indeterminate=2
fi
# Reset boot_success for current boot
set boot_success=0
save_env boot_success boot_indeterminate
### END /etc/grub.d/10_reset_boot_success ###

### BEGIN /etc/grub.d/12_menu_auto_hide ###
if [ x$feature_timeout_style = xy ] ; then
  if [ "${menu_show_once}" ]; then
    unset menu_show_once
    save_env menu_show_once
    set timeout_style=menu
    set timeout=60
  elif [ "${menu_auto_hide}" -a "${menu_hide_ok}" = "1" ]; then
    set orig_timeout_style=${timeout_style}
    set orig_timeout=${timeout}
    if [ "${fastboot}" = "1" ]; then
      # timeout_style=menu + timeout=0 avoids the countdown code keypress check
      set timeout_style=menu
      set timeout=0
    else
      set timeout_style=hidden
      set timeout=1
    fi
  fi
fi
### END /etc/grub.d/12_menu_auto_hide ###

### BEGIN /etc/grub.d/14_menu_show_once ###
if [ x$feature_timeout_style = xy ]; then
  if [ "${menu_show_once_timeout}" ]; then
    set timeout_style=menu
    set timeout="${menu_show_once_timeout}"
    unset menu_show_once_timeout
    save_env menu_show_once_timeout
  fi
fi
### END /etc/grub.d/14_menu_show_once ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_ppc_terminfo ###
### END /etc/grub.d/20_ppc_terminfo ###

### BEGIN /etc/grub.d/30_os-prober ###
# Other OS found, undo autohiding of menu unless menu_auto_hide=2
if [ "${orig_timeout_style}" -a "${menu_auto_hide}" != "2" ]; then
  set timeout_style=${orig_timeout_style}
  set timeout=${orig_timeout}
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
   fwsetup
}
### 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 ###


Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Nov 30th, '21, 06:33

This is a UEFI machine. Intel NUC.

Code: Select all
lscpu
Architecture:                    x86_64
CPU op-mode(s):                  32-bit, 64-bit
Byte Order:                      Little Endian
Address sizes:                   39 bits physical, 48 bits virtual
CPU(s):                          4
On-line CPU(s) list:             0-3
Thread(s) per core:              1
Core(s) per socket:              4
Socket(s):                       1
NUMA node(s):                    1
Vendor ID:                       GenuineIntel
CPU family:                      6
Model:                           92
Model name:                      Intel(R) Celeron(R) CPU J3455 @ 1.50GHz
Stepping:                        9
CPU MHz:                         2118.805
CPU max MHz:                     2300.0000
CPU min MHz:                     800.0000
BogoMIPS:                        2995.20
Virtualization:                  VT-x
L1d cache:                       96 KiB
L1i cache:                       128 KiB
L2 cache:                        2 MiB
NUMA node0 CPU(s):               0-3
Vulnerability Itlb multihit:     Not affected
Vulnerability L1tf:              Not affected
Vulnerability Mds:               Not affected
Vulnerability Meltdown:          Not affected
Vulnerability Spec store bypass: Not affected
Vulnerability Spectre v1:        Mitigation; usercopy/swapgs barriers and __user
                                  pointer sanitization
Vulnerability Spectre v2:        Mitigation; Full generic retpoline, IBPB condit
                                 ional, IBRS_FW, STIBP disabled, RSB filling
Vulnerability Srbds:             Not affected
Vulnerability Tsx async abort:   Not affected
Flags:                           fpu vme de pse tsc msr pae mce cx8 apic sep mtr
                                 r pge mca cmov pat pse36 clflush dts acpi mmx f
                                 xsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rd
                                 tscp lm constant_tsc art arch_perfmon pebs bts
                                 rep_good nopl xtopology tsc_reliable nonstop_ts
                                 c cpuid aperfmperf tsc_known_freq pni pclmulqdq
                                  dtes64 ds_cpl vmx est tm2 ssse3 sdbg cx16 xtpr
                                  pdcm sse4_1 sse4_2 x2apic movbe popcnt tsc_dea
                                 dline_timer aes xsave rdrand lahf_lm 3dnowprefe
                                 tch cpuid_fault cat_l2 ibrs ibpb stibp tpr_shad
                                 ow vnmi flexpriority ept vpid ept_ad fsgsbase t
                                 sc_adjust smep erms mpx rdt_a rdseed smap clflu
                                 shopt intel_pt sha_ni xsaveopt xsavec xgetbv1 x
                                 saves dtherm ida arat pln pts md_clear arch_cap
                                 abilities



Code: Select all
lspci
00:00.0 Host bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Host Bridge (rev 0b)
00:02.0 VGA compatible controller: Intel Corporation HD Graphics 500 (rev 0b)
00:0e.0 Audio device: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Audio Cluster (rev 0b)
00:0f.0 Communication controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Trusted Execution Engine (rev 0b)
00:12.0 SATA controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SATA AHCI Controller (rev 0b)
00:13.0 PCI bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #1 (rev fb)
00:13.1 PCI bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #2 (rev fb)
00:13.2 PCI bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PCI Express Port A #3 (rev fb)
00:15.0 USB controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series USB xHCI (rev 0b)
00:16.0 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series I2C Controller #1 (rev 0b)
00:18.0 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series HSUART Controller #1 (rev 0b)
00:19.0 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #1 (rev 0b)
00:19.1 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #2 (rev 0b)
00:19.2 Signal processing controller: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SPI Controller #3 (rev 0b)
00:1a.0 Serial bus controller [0c80]: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series PWM Pin Controller (rev 0b)
00:1f.0 ISA bridge: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series Low Pin Count Interface (rev 0b)
00:1f.1 SMBus: Intel Corporation Celeron N3350/Pentium N4200/Atom E3900 Series SMBus Controller (rev 0b)
01:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader (rev 01)
02:00.0 Network controller: Intel Corporation Dual Band Wireless-AC 3168NGW [Stone Peak] (rev 10)
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)







IF there is anything else that may help troubleshoot, please let me know. This is all I can think of at the moment to include.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby sturmvogel » Nov 30th, '21, 13:54

You have 27! Kernels installed? Wow :o
sturmvogel
 
Posts: 678
Joined: Jul 30th, '12, 00:39

Re: Update Mageia Grub can't find kernels too many sym links

Postby doktor5000 » Nov 30th, '21, 18:26

The message is copy&paste ? Because the path is definitely wrong, seems like a typo:
/init: line 153: /user/lib/systemd-udevd: Too many levels of symbolic links


Also, when does that message occur in particular? During the inital stages of boot, when booting from initrd or afterwards when the full system starts to get booted?

I'd say your initrd is broken, the error message indicates that there are broken symlinks (that can happen when using relative targets for symlinks). This is what it should look like in your initrd:

[doktor5000@Mageia8]─[17:19:46]─[~] sudo LC_ALL=C lsinitrd /boot/initrd-$(uname -r).img | grep -iE "systemd-udevd|udevadm"
-rwxr-xr-x 1 root root 431392 Jul 21 09:36 usr/bin/udevadm
lrwxrwxrwx 1 root root 17 Nov 30 17:19 usr/lib/systemd/systemd-udevd -> ../../bin/udevadm
lrwxrwxrwx 1 root root 14 Nov 30 17:19 usr/sbin/udevadm -> ../bin/udevadm
[doktor5000@Mageia8]─[17:21:34]─[~]
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17629
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 1st, '21, 11:32

Shall I paste what is in the init-d?

I did nothing to it. What can cause it to break? How to repair it?

This message occurs right at boot. It may well be a typo because the only way I could even record the error was to take a photo of it and then type it in.
Let me look at the photo again and see if it is other than what I typed or thought I saw. My eyesight isn't great to begin with.

Ah, yes... it is:
/init: line 153: /usr/lib/systemd-udevd: Too many levels of symbolic links


I typed "user" vs "usr"

Why is init-d broken only for recent kernel updates? Or What could cause that? If it is repairable in some way that may get my systems back to normal.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 1st, '21, 11:35

Also one more thing, these are all solid state media installs in case that has any impact at all.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby sturmvogel » Dec 1st, '21, 13:32

The doktor5000 was asking you to post the output from:
Code: Select all
sudo LC_ALL=C lsinitrd /boot/initrd-$(uname -r).img | grep -iE "systemd-udevd|udevadm"
sturmvogel
 
Posts: 678
Joined: Jul 30th, '12, 00:39

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 1st, '21, 14:46

Ok. That is my work machine. I'll post it when I am at work and on it. :)
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby doktor5000 » Dec 1st, '21, 19:16

Sabungayam wrote:I did nothing to it. What can cause it to break? How to repair it?

Changes to the dracut configuration, or changes to the host filesystem layout. And you repair it by finding the cause, and then recreate the broken initrds with dracut after fixing the cause.
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17629
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 2nd, '21, 06:14

Here's what's in my initrd.



Code: Select all
LC_ALL=C lsinitrd /boot/initrd-$(uname -r).img | grep -iE "systemd-udevd|udevadm"
-rwxr-xr-x   1 root     root       431392 Jul 21 16:36 usr/bin/udevadm
lrwxrwxrwx   1 root     root           17 Oct 14 13:27 usr/lib/systemd/systemd-udevd -> ../../bin/udevadm
lrwxrwxrwx   1 root     root           14 Oct 14 13:27 usr/sbin/udevadm -> ../bin/udevadm



Changes to the dracut configuration, or changes to the host filesystem layout. And you repair it by finding the cause, and then recreate the broken initrds with dracut after fixing the cause.


It's good there's a way to fix it if the cause can be found. I just did regular updates then something like this popped up.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby doktor5000 » Dec 2nd, '21, 18:32

Well, the part /boot/initrd-$(uname -r).img is the initrd for your currently booted kernel, which is irrelevant because obviously it has booted just fine. You'd have to replace the filename with the filename of the initrd of the kernel which shows the boot issues.
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17629
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 3rd, '21, 09:30

Can you give me an example of that please? What would the kernel 'name' format look like for example if I wanted to show 5.10.75 kernel which was working until update.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby sturmvogel » Dec 3rd, '21, 10:37

The names of the *.img are in your /boot/ directory. As example a screenshot from one of my machines.
Screenshot_20211203_083302.png
Screenshot_20211203_083302.png (6.89 KiB) Viewed 16753 times
sturmvogel
 
Posts: 678
Joined: Jul 30th, '12, 00:39

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 3rd, '21, 13:28

Thank you very much. I was wondering to if I could try that. Monday at work I will show what's in the problem kernels boot.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 6th, '21, 09:18

Good day! This is what this machine has for the two problem kernels that won't boot.

Code: Select all
LC_ALL=C lsinitrd /boot/initrd-5.10.75-desktop-1.mga8.img | grep -iE "systemd-udevd|udevadm"
-rwxr-xr-x   1 root     root       431392 Jul 21 16:36 usr/bin/udevadm
lrwxrwxrwx   1 root     root           30 Nov 22 14:14 usr/lib/systemd/systemd-udevd -> /usr/lib/systemd/systemd-udevd

LC_ALL=C lsinitrd /boot/initrd-5.10.78-desktop-1.mga8.img | grep -iE "systemd-udevd|udevadm"
-rwxr-xr-x   1 root     root       431392 Jul 21 16:36 usr/bin/udevadm
lrwxrwxrwx   1 root     root           30 Nov 22 14:14 usr/lib/systemd/systemd-udevd -> /usr/lib/systemd/systemd-udevd





This machine was running 5.10.75-desktop-1.mga8 just fine until the update to 5.10.78-desktop-1.mga8

Looks like a line is missing? My current kernel has 3 lines.

Code: Select all
LC_ALL=C lsinitrd /boot/initrd-5.10.70-desktop-1.mga8.img | grep -iE "systemd-udevd|udevadm"
-rwxr-xr-x   1 root     root       431392 Jul 21 16:36 usr/bin/udevadm
lrwxrwxrwx   1 root     root           17 Oct 14 13:27 usr/lib/systemd/systemd-udevd -> ../../bin/udevadm
lrwxrwxrwx   1 root     root           14 Oct 14 13:27 usr/sbin/udevadm -> ../bin/udevadm



These are the two that won't boot. Currently booted into 5.10.70-desktop-1.mga8.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby doktor5000 » Dec 6th, '21, 22:41

Well it's not the missing line but that systemd-udevd does not point to udevadm.

You could try to recreate those as root and update the bootloader afterwards by
Code: Select all
dracut -f /boot/initrd-5.10.75-desktop-1.mga8_FIXED.img 5.10.75-desktop-1.mga8
dracut -f /boot/initrd-5.10.78-desktop-1.mga8_FIXED.img 5.10.78-desktop-1.mga8
update-grub


But as newer kernels have been released since then, why not simply remove those two, along with other older kernels?
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17629
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 7th, '21, 02:23

But as newer kernels have been released since then, why not simply remove those two, along with other older kernels?


As an example, the AMD machine which is totally unbootable Mageia wise, I updated it and it had only one kernel. That kernel, was

5.15.4-desktop-1.mga8 in the update. Which I was looking forward too as it has some new AMD stuff for monitoring etc. The original kernel,
it was a net install, was 5.10.62-desktop-1.mga8.

So where I thought maybe it was just something with the kernels, I only ended up with the same result and somehow updating that kernel
changed the 5.10.62-desktop-1.mga8 kernel as well and made it unbootable.

So basically the reason I have not updated and 'tried' any newer kernels, is because I have no clue what is causing it. From my viewpoint,
I am not sure it's a "flaw" in the kernel. After all no one else is reporting this issue. However I have it across several machines. Given what happened with the AMD machine, from my point of view again, if I 'try' updating again I may end up with no kernel that will boot.

I was running 5.10.75-desktop-1.mga8 then updated and got 5.10.78-desktop-1.mga8, only though the last was not right, it changed 5.10.75-desktop-1.mga8? SO, because this is really quite beyond my understanding and level, I prefer to play it safe less I end up with a more complicated issue than I already have.

The first machine with the dual boot that I reported this issue with did have a good number of kernels. When this problem happened with the 5.10.75-desktop-1.mga8 I lost the ability to boot the 5.10.70-desktop-1.mga8 kernel. IT seems to effect the installed kernel with update and one kernel behind but every subsequent updated up to 5.15.4-desktop-1.mga8 on that machine has changed nothing. Still getting the same message.



I will try the rebuild and see what happens.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 7th, '21, 02:31

Is this output the norm?

Code: Select all
# dracut -f /boot/initrd-5.10.75-desktop-1.mga8_FIXED.img 5.10.75-desktop-1.mga8
/etc/dracut.conf.d/51-mageia-resume.conf:add_device+="UUID=d2b92597-b850-413a-8738-c907d5d631a5"

dracut: WARNING: <key>+=" <values> ": <values> should have surrounding white spaces!
dracut: WARNING: This will lead to unwanted side effects! Please fix the configuration file.

dracut: Executing: /usr/bin/dracut -f /boot/initrd-5.10.75-desktop-1.mga8_FIXED.img 5.10.75-desktop-1.mga8
dracut: dracut module 'bootchart' will not be installed, because command '/sbin/bootchartd' could not be found!
dracut: dracut module 'mksh' will not be installed, because command '/bin/mksh' could not be found!
dracut: systemd-initrd needs systemd in the initramfs
dracut: systemd-networkd needs systemd in the initramfs
dracut: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
dracut: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
dracut: dracut module 'ifcfg' depends on 'network', which can't be installed
dracut: dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsiadm' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsid' could not be found!
dracut: dracut module 'nvmf' will not be installed, because command 'nvme' could not be found!
dracut: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
dracut: dracut-systemd needs systemd-initrd in the initramfs
dracut: memstrack is not available
dracut: If you need to use rd.memdebug>=4, please install memstrack
dracut: dracut-squash only supports systemd bases initramfs
dracut: dracut module 'mksh' will not be installed, because command '/bin/mksh' could not be found!
dracut: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
dracut: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
dracut: dracut module 'ifcfg' depends on 'network', which can't be installed
dracut: dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsiadm' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsid' could not be found!
dracut: dracut module 'nvmf' will not be installed, because command 'nvme' could not be found!
dracut: memstrack is not available
dracut: If you need to use rd.memdebug>=4, please install memstrack
dracut: dracut-squash only supports systemd bases initramfs
dracut: *** Including module: bash ***
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/bin/bash'
dracut-install: ERROR: installing '/bin/bash'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /bin/bash
dracut: *** Including module: dash ***
dracut: *** Including module: i18n ***
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/setfont'
dracut-install: ERROR: installing 'setfont'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/loadkeys'
dracut-install: ERROR: installing 'loadkeys'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/kbd_mode'
dracut-install: ERROR: installing 'kbd_mode'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/stty'
dracut-install: ERROR: installing 'stty'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l setfont loadkeys kbd_mode stty
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/sh'
dracut-install: ERROR: failed to install '/usr/bin/sh'
dracut-install: ERROR: installing '/usr/lib/dracut/modules.d/10i18n/console_init.sh' to '/lib/udev/console_init'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /usr/lib/dracut/modules.d/10i18n/console_init.sh /lib/udev/console_init
dracut: *** Including module: drm ***
dracut: *** Including module: plymouth ***
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/readlink'
dracut-install: ERROR: installing 'readlink'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l readlink
dracut: *** Including module: kernel-modules ***
dracut: *** Including module: kernel-modules-extra ***
dracut: *** Including module: rootfs-block ***
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/umount'
dracut-install: ERROR: installing 'umount'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l umount
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/tr'
dracut-install: ERROR: installing 'tr'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l tr
dracut: *** Including module: terminfo ***
dracut: *** Including module: udev-rules ***
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/../bin/udevadm'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/udevadm'
dracut-install: ERROR: installing 'udevadm'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/cat'
dracut-install: ERROR: installing 'cat'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/uname'
dracut-install: ERROR: installing 'uname'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/blkid'
dracut-install: ERROR: installing 'blkid'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l udevadm cat uname blkid
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib/systemd/../../bin/udevadm'
dracut-install: ERROR: installing '/usr/lib/systemd/systemd-udevd'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /usr/lib/systemd/systemd-udevd
dracut: Skipping udev rule: 40-redhat.rules
dracut: Skipping udev rule: 50-firmware.rules
dracut: Skipping udev rule: 50-udev.rules
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/sbin/../bin/kmod'
dracut-install: ERROR: installing '/sbin/modprobe'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /sbin/modprobe
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/lib/udev/pcmcia-check-broken-cis'
dracut-install: ERROR: installing '/lib/udev/pcmcia-check-broken-cis'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /lib/udev/pcmcia-check-broken-cis
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/sbin/../bin/kmod'
dracut-install: ERROR: installing '/sbin/modprobe'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /sbin/modprobe
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/lib/udev/pcmcia-socket-startup'
dracut-install: ERROR: installing '/lib/udev/pcmcia-socket-startup'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /lib/udev/pcmcia-socket-startup
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib/udev/ata_id'
dracut-install: ERROR: installing '/usr/lib/udev/ata_id'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l /usr/lib/udev/ata_id
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib/udev/ata_id'
dracut-install: ERROR: installing '/usr/lib/udev/ata_id'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l /usr/lib/udev/ata_id
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib/udev/ata_id'
dracut-install: ERROR: installing '/usr/lib/udev/ata_id'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l /usr/lib/udev/ata_id
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib/udev/scsi_id'
dracut-install: ERROR: installing '/usr/lib/udev/scsi_id'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l /usr/lib/udev/scsi_id
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib/udev/scsi_id'
dracut-install: ERROR: installing '/usr/lib/udev/scsi_id'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l /usr/lib/udev/scsi_id
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/udevadm'
dracut-install: ERROR: installing '/usr/bin/udevadm'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /usr/bin/udevadm
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/loginctl'
dracut-install: ERROR: installing '/usr/bin/loginctl'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /usr/bin/loginctl
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/bin/grep'
dracut-install: ERROR: installing '/bin/grep'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /bin/grep
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/sh'
dracut-install: ERROR: failed to install '/usr/bin/sh'
dracut-install: ERROR: installing '/sbin/display_driver_helper'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /sbin/display_driver_helper
dracut: Skipping udev rule: 91-permissions.rules
dracut: Skipping udev rule: 80-drivers-modprobe.rules
dracut: Skipping udev rule: 70-persistent-net.rules
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib/udev/ata_id'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib/udev/cdrom_id'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib/udev/scsi_id'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib/udev/pcmcia-socket-startup'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib/udev/pcmcia-check-broken-cis'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/lib64/libnss_files-2.32.so'
dracut-install: ERROR: installing '/lib64/libnss_files-2.32.so'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/lib64/../../lib64/libnss_files-2.32.so'
dracut-install: ERROR: installing '/lib64/libnss_files.so'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/lib64/libnss_files-2.32.so'
dracut-install: ERROR: installing '/lib64/libnss_files.so.2'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib64/libnss_files-2.32.so'
dracut-install: ERROR: installing '/usr/lib64/libnss_files-2.32.so'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib64/../../lib64/libnss_files-2.32.so'
dracut-install: ERROR: installing '/usr/lib64/libnss_files.so'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib64/libnss_files-2.32.so'
dracut-install: ERROR: installing '/usr/lib64/libnss_files.so.2'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l /lib64/libnss_files-2.32.so /lib64/libnss_files.so /lib64/libnss_files.so.2 /usr/lib64/libnss_files-2.32.so /usr/lib64/libnss_files.so /usr/lib64/libnss_files.so.2
dracut: *** Including module: usrmount ***
dracut: *** Including module: base ***
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/mount'
dracut-install: ERROR: installing 'mount'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/mknod'
dracut-install: ERROR: installing 'mknod'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/mkdir'
dracut-install: ERROR: installing 'mkdir'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/sleep'
dracut-install: ERROR: installing 'sleep'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/chroot'
dracut-install: ERROR: installing 'chroot'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/chown'
dracut-install: ERROR: installing 'chown'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/sed'
dracut-install: ERROR: installing 'sed'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/ls'
dracut-install: ERROR: installing 'ls'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/flock'
dracut-install: ERROR: installing 'flock'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/cp'
dracut-install: ERROR: installing 'cp'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/mv'
dracut-install: ERROR: installing 'mv'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/dmesg'
dracut-install: ERROR: installing 'dmesg'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/rm'
dracut-install: ERROR: installing 'rm'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/ln'
dracut-install: ERROR: installing 'ln'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/../bin/kmod'
dracut-install: ERROR: installing 'rmmod'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/mkfifo'
dracut-install: ERROR: installing 'mkfifo'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/umount'
dracut-install: ERROR: installing 'umount'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/readlink'
dracut-install: ERROR: installing 'readlink'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/setsid'
dracut-install: ERROR: installing 'setsid'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/../bin/kmod'
dracut-install: ERROR: installing 'modprobe'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l mount mknod mkdir sleep chroot chown sed ls flock cp mv dmesg rm ln rmmod mkfifo umount readlink setsid modprobe
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/findmnt'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/less'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/kmod'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/sh'
dracut-install: ERROR: failed to install '/usr/bin/sh'
dracut-install: ERROR: installing '/usr/lib/dracut/modules.d/99base/init.sh' to '/init'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /usr/lib/dracut/modules.d/99base/init.sh /init
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/sh'
dracut-install: ERROR: failed to install '/usr/bin/sh'
dracut-install: ERROR: installing '/usr/lib/dracut/modules.d/99base/initqueue.sh' to '/sbin/initqueue'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /usr/lib/dracut/modules.d/99base/initqueue.sh /sbin/initqueue
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/sh'
dracut-install: ERROR: failed to install '/usr/bin/sh'
dracut-install: ERROR: installing '/usr/lib/dracut/modules.d/99base/loginit.sh' to '/sbin/loginit'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /usr/lib/dracut/modules.d/99base/loginit.sh /sbin/loginit
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/sh'
dracut-install: ERROR: failed to install '/usr/bin/sh'
dracut-install: ERROR: installing '/usr/lib/dracut/modules.d/99base/rdsosreport.sh' to '/sbin/rdsosreport'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /usr/lib/dracut/modules.d/99base/rdsosreport.sh /sbin/rdsosreport
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/switch_root'
dracut-install: ERROR: installing 'switch_root'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l switch_root
dracut: Failed to install switch_root
dracut: *** Including module: fs-lib ***
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/sh'
dracut-install: ERROR: failed to install '/usr/bin/sh'
dracut-install: ERROR: installing '/usr/lib/dracut/modules.d/99fs-lib/fs-lib.sh' to '/lib/fs-lib.sh'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /usr/lib/dracut/modules.d/99fs-lib/fs-lib.sh /lib/fs-lib.sh
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/umount'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/mount'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/e2fsck'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/e2fsck'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/fsck.fat'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/fsck'
dracut: *** Including module: shutdown ***
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/umount'
dracut-install: ERROR: installing 'umount'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/../bin/systemctl'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/../bin/systemctl'
dracut-install: ERROR: installing 'poweroff'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/../bin/systemctl'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/../bin/systemctl'
dracut-install: ERROR: installing 'reboot'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/../bin/systemctl'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/../bin/systemctl'
dracut-install: ERROR: installing 'halt'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/sbin/losetup'
dracut-install: ERROR: installing 'losetup'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/stat'
dracut-install: ERROR: installing 'stat'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/sleep'
dracut-install: ERROR: installing 'sleep'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l umount poweroff reboot halt losetup stat sleep
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/bin/sh'
dracut-install: ERROR: failed to install '/usr/bin/sh'
dracut-install: ERROR: installing '/usr/lib/dracut/modules.d/99shutdown/shutdown.sh' to '/shutdown'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -l /usr/lib/dracut/modules.d/99shutdown/shutdown.sh /shutdown
dracut: *** Including modules done ***
dracut: *** Installing kernel module dependencies ***
dracut: *** Installing kernel module dependencies done ***
dracut: *** Hardlinking files ***
dracut: *** Hardlinking files done ***
dracut: *** Generating early-microcode cpio image ***
dracut: *** Constructing GenuineIntel.bin ***
dracut: *** Store current command line parameters ***
dracut: Stored kernel commandline:
dracut:  root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 rootfstype=ext4 rootflags=rw,relatime
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/lib64/libgcc_s-10.so.1'
dracut-install: ERROR: installing '/lib64/libgcc_s.so.1'
dracut-install: ERROR: failed to install '/lib/$LIB/liblsp.so' for '/usr/lib64/libgcc_s-10.so.1'
dracut-install: ERROR: installing '/usr/lib64/libgcc_s.so.1'
dracut: FAILED: /usr/lib/dracut/dracut-install -D /tmp/dracut.Q5VXcH/initramfs -a -l /lib64/libgcc_s.so.1 /usr/lib64/libgcc_s.so.1
dracut: *** Stripping files ***
dracut: *** Stripping files done ***
dracut: *** Creating image file '/boot/initrd-5.10.75-desktop-1.mga8_FIXED.img' ***
dracut: *** Creating initramfs image file '/boot/initrd-5.10.75-desktop-1.mga8_FIXED.img' done ***



Or is this install missing something this needs?
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby sturmvogel » Dec 7th, '21, 12:16

It's not normal. The first thing is, that you should correct the content from your "/etc/dracut.conf.d/51-mageia-resume.conf" file. There are some blanks missing like it is mentioned in your dracut output. But it's only a warning and not the root of your problems.
Code: Select all
dracut: WARNING: <key>+=" <values> ": <values> should have surrounding white spaces!
dracut: WARNING: This will lead to unwanted side effects! Please fix the configuration file.

Yours is:
Code: Select all
add_device+="UUID=d2b92597-b850-413a-8738-c907d5d631a5"

It should look like this:
Code: Select all
add_device+=" UUID=d2b92597-b850-413a-8738-c907d5d631a5 "


But the Errors in your log are the critical part. Only a question from my side: Do you use a VPN from Astrill? Because the most references to the "liblsp.so" files are connected to this VPN service.
sturmvogel
 
Posts: 678
Joined: Jul 30th, '12, 00:39

Re: Update Mageia Grub can't find kernels too many sym links

Postby doktor5000 » Dec 7th, '21, 17:54

None of the error messages are expected, something seems severely broken, and this not normal for a default Mageia install.

Can you please show the output of
Code: Select all
cat /etc/ld.so.conf
cat /etc/ld.so.preload
ls -alR /etc/ld.so.conf.d/
set | grep LD_
ls -al /etc/dracut.conf.d/


This is what a normal dracut run should look like:

Code: Select all
[doktor5000@Mageia8]─[16:51:06]─[~] sudo dracut -f /boot/initrd-5.10.16-desktop-1.mga8_FIXED.img 5.10.16-desktop-1.mga8
dracut: Executing: /usr/bin/dracut -f /boot/initrd-5.10.16-desktop-1.mga8_FIXED.img 5.10.16-desktop-1.mga8
dracut: dracut module 'bootchart' will not be installed, because command '/sbin/bootchartd' could not be found!
dracut: dracut module 'mksh' will not be installed, because command '/bin/mksh' could not be found!
dracut: systemd-initrd needs systemd in the initramfs
dracut: systemd-networkd needs systemd in the initramfs
dracut: dracut module 'modsign' will not be installed, because command 'keyctl' could not be found!
dracut: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
dracut: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
dracut: dracut module 'ifcfg' depends on 'network', which can't be installed
dracut: dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsiadm' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsid' could not be found!
dracut: 95nfs: Could not find any command of 'rpcbind portmap'!
dracut: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
dracut: dracut module 'masterkey' will not be installed, because command 'keyctl' could not be found!
dracut: dracut-systemd needs systemd-initrd in the initramfs
dracut: memstrack is not available
dracut: If you need to use rd.memdebug>=4, please install memstrack
dracut: dracut-squash only supports systemd bases initramfs
dracut: dracut module 'mksh' will not be installed, because command '/bin/mksh' could not be found!
dracut: dracut module 'modsign' will not be installed, because command 'keyctl' could not be found!
dracut: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
dracut: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
dracut: dracut module 'ifcfg' depends on 'network', which can't be installed
dracut: dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsiadm' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsid' could not be found!
dracut: 95nfs: Could not find any command of 'rpcbind portmap'!
dracut: dracut module 'masterkey' will not be installed, because command 'keyctl' could not be found!
dracut: memstrack is not available
dracut: If you need to use rd.memdebug>=4, please install memstrack
dracut: dracut-squash only supports systemd bases initramfs
dracut: *** Including module: bash ***
dracut: *** Including module: dash ***
dracut: *** Including module: i18n ***
dracut: *** Including module: drm ***
dracut: *** Including module: plymouth ***
dracut: *** Including module: btrfs ***
dracut: *** Including module: kernel-modules ***
dracut: *** Including module: kernel-modules-extra ***
dracut: *** Including module: rootfs-block ***
dracut: *** Including module: terminfo ***
dracut: *** Including module: udev-rules ***
dracut: Skipping udev rule: 40-redhat.rules
dracut: Skipping udev rule: 50-firmware.rules
dracut: Skipping udev rule: 50-udev.rules
dracut: Skipping udev rule: 91-permissions.rules
dracut: Skipping udev rule: 80-drivers-modprobe.rules
dracut: Skipping udev rule: 70-persistent-net.rules
dracut: *** Including module: usrmount ***
dracut: *** Including module: base ***
dracut: *** Including module: fs-lib ***
dracut: *** Including module: shutdown ***
dracut: *** Including modules done ***
dracut: *** Installing kernel module dependencies ***
dracut: *** Installing kernel module dependencies done ***
dracut: *** Resolving executable dependencies ***
dracut: *** Resolving executable dependencies done ***
dracut: *** Hardlinking files ***
dracut: *** Hardlinking files done ***
dracut: *** Generating early-microcode cpio image ***
dracut: *** Constructing GenuineIntel.bin ***
dracut: *** Store current command line parameters ***
dracut: Stored kernel commandline:
dracut: rd.driver.pre=btrfs
dracut:  root=UUID=19ea08b8-ad1e-4127-9b59-5a117a8a447a rootfstype=btrfs rootflags=rw,noatime,ssd,space_cache,subvolid=5,subvol=/
dracut: *** Stripping files ***
dracut: *** Stripping files done ***
dracut: *** Creating image file '/boot/initrd-5.10.16-desktop-1.mga8_FIXED.img' ***
dracut: *** Creating initramfs image file '/boot/initrd-5.10.16-desktop-1.mga8_FIXED.img' done ***
[doktor5000@Mageia8]─[16:52:21]─[~]
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17629
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: Update Mageia Grub can't find kernels too many sym links

Postby doktor5000 » Dec 7th, '21, 18:00

sturmvogel wrote:Only a question from my side: Do you use a VPN from Astrill? Because the most references to the "liblsp.so" files are connected to this VPN service.

Most definitely. There are several bug reports about similar stuff after installing their VPN client:
https://bugzilla.redhat.com/show_bug.cgi?id=1051666
https://bugs.launchpad.net/ubuntu/+bug/1173050
Cauldron is not for the faint of heart!
Caution: Hot, bubbling magic inside. May explode or cook your kittens!
----
Disclaimer: Beware of allergic reactions in answer to unconstructive complaint-type posts
User avatar
doktor5000
 
Posts: 17629
Joined: Jun 4th, '11, 10:10
Location: Leipzig, Germany

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 8th, '21, 03:32

Only a question from my side: Do you use a VPN from Astrill? Because the most references to the "liblsp.so" files are connected to this VPN service.



Well, that is most interesting, yes I do. I have several VPN services I use. I was using another one 'before' but it seemed to be a bit slower.

I usually put Astrill in my DD-WRT router and usually I don't put their client on my installs. However was waiting for a new Router that's 'in the mail' as the say. SO I put the Astrill client on.

OK, so I indeed see the two bug reports concerning Astrill.

Is it possible that Astrill is causing this problem with the updates in some way? Interfering with the Kernels because of this library? I will remove it and use the other service. Let's see what happens. I will try an update.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 8th, '21, 06:04

This is what I have now:

Sorry, I should have posted some of the info you requested 'before' deleting Astril RPM. I forgot to do that.

uname -r
5.15.6-desktop-2.mga8


Code: Select all
dracut -f /boot/initrd-5.10.78-desktop-1.mga8_FIXED.img 5.10.78-desktop-1.mga8
/etc/dracut.conf.d/51-mageia-resume.conf:add_device+="UUID=d2b92597-b850-413a-8738-c907d5d631a5"

dracut: WARNING: <key>+=" <values> ": <values> should have surrounding white spaces!
dracut: WARNING: This will lead to unwanted side effects! Please fix the configuration file.

dracut: Executing: /usr/bin/dracut -f /boot/initrd-5.10.78-desktop-1.mga8_FIXED.img 5.10.78-desktop-1.mga8
dracut: dracut module 'bootchart' will not be installed, because command '/sbin/bootchartd' could not be found!
dracut: dracut module 'mksh' will not be installed, because command '/bin/mksh' could not be found!
dracut: systemd-initrd needs systemd in the initramfs
dracut: systemd-networkd needs systemd in the initramfs
dracut: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
dracut: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
dracut: dracut module 'ifcfg' depends on 'network', which can't be installed
dracut: dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsiadm' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsid' could not be found!
dracut: dracut module 'nvmf' will not be installed, because command 'nvme' could not be found!
dracut: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
dracut: dracut-systemd needs systemd-initrd in the initramfs
dracut: memstrack is not available
dracut: If you need to use rd.memdebug>=4, please install memstrack
dracut: dracut-squash only supports systemd bases initramfs
dracut: dracut module 'mksh' will not be installed, because command '/bin/mksh' could not be found!
dracut: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
dracut: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
dracut: dracut module 'ifcfg' depends on 'network', which can't be installed
dracut: dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsiadm' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsid' could not be found!
dracut: dracut module 'nvmf' will not be installed, because command 'nvme' could not be found!
dracut: memstrack is not available
dracut: If you need to use rd.memdebug>=4, please install memstrack
dracut: dracut-squash only supports systemd bases initramfs
dracut: *** Including module: bash ***
dracut: *** Including module: dash ***
dracut: *** Including module: i18n ***
dracut: *** Including module: drm ***
dracut: *** Including module: plymouth ***
dracut: *** Including module: kernel-modules ***
dracut: *** Including module: kernel-modules-extra ***
dracut: *** Including module: rootfs-block ***
dracut: *** Including module: terminfo ***
dracut: *** Including module: udev-rules ***
dracut: Skipping udev rule: 40-redhat.rules
dracut: Skipping udev rule: 50-firmware.rules
dracut: Skipping udev rule: 50-udev.rules
dracut: Skipping udev rule: 91-permissions.rules
dracut: Skipping udev rule: 80-drivers-modprobe.rules
dracut: Skipping udev rule: 70-persistent-net.rules
dracut: *** Including module: usrmount ***
dracut: *** Including module: base ***
dracut: *** Including module: fs-lib ***
dracut: *** Including module: shutdown ***
dracut: *** Including modules done ***
dracut: *** Installing kernel module dependencies ***
dracut: *** Installing kernel module dependencies done ***
dracut: *** Resolving executable dependencies ***
dracut: *** Resolving executable dependencies done ***
dracut: *** Hardlinking files ***
dracut: *** Hardlinking files done ***
dracut: *** Generating early-microcode cpio image ***
dracut: *** Constructing GenuineIntel.bin ***
dracut: *** Store current command line parameters ***
dracut: Stored kernel commandline:
dracut:  root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 rootfstype=ext4 rootflags=rw,relatime
dracut: *** Stripping files ***
dracut: *** Stripping files done ***
dracut: *** Creating image file '/boot/initrd-5.10.78-desktop-1.mga8_FIXED.img' ***
dracut: *** Creating initramfs image file '/boot/initrd-5.10.78-desktop-1.mga8_FIXED.img' done ***




Code: Select all
dracut -f /boot/initrd-5.10.75-desktop-1.mga8_FIXED.img 5.10.75-desktop-1.mga8
/etc/dracut.conf.d/51-mageia-resume.conf:add_device+="UUID=d2b92597-b850-413a-8738-c907d5d631a5"

dracut: WARNING: <key>+=" <values> ": <values> should have surrounding white spaces!
dracut: WARNING: This will lead to unwanted side effects! Please fix the configuration file.

dracut: Executing: /usr/bin/dracut -f /boot/initrd-5.10.75-desktop-1.mga8_FIXED.img 5.10.75-desktop-1.mga8
dracut: dracut module 'bootchart' will not be installed, because command '/sbin/bootchartd' could not be found!
dracut: dracut module 'mksh' will not be installed, because command '/bin/mksh' could not be found!
dracut: systemd-initrd needs systemd in the initramfs
dracut: systemd-networkd needs systemd in the initramfs
dracut: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
dracut: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
dracut: dracut module 'ifcfg' depends on 'network', which can't be installed
dracut: dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsiadm' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsid' could not be found!
dracut: dracut module 'nvmf' will not be installed, because command 'nvme' could not be found!
dracut: dracut module 'biosdevname' will not be installed, because command 'biosdevname' could not be found!
dracut: dracut-systemd needs systemd-initrd in the initramfs
dracut: memstrack is not available
dracut: If you need to use rd.memdebug>=4, please install memstrack
dracut: dracut-squash only supports systemd bases initramfs
dracut: dracut module 'mksh' will not be installed, because command '/bin/mksh' could not be found!
dracut: dracut module 'busybox' will not be installed, because command 'busybox' could not be found!
dracut: dracut module 'rngd' will not be installed, because command 'rngd' could not be found!
dracut: dracut module 'network-wicked' will not be installed, because command 'wicked' could not be found!
dracut: dracut module 'ifcfg' depends on 'network', which can't be installed
dracut: dracut module 'cifs' will not be installed, because command 'mount.cifs' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsi-iname' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsiadm' could not be found!
dracut: dracut module 'iscsi' will not be installed, because command 'iscsid' could not be found!
dracut: dracut module 'nvmf' will not be installed, because command 'nvme' could not be found!
dracut: memstrack is not available
dracut: If you need to use rd.memdebug>=4, please install memstrack
dracut: dracut-squash only supports systemd bases initramfs
dracut: *** Including module: bash ***
dracut: *** Including module: dash ***
dracut: *** Including module: i18n ***
dracut: *** Including module: drm ***
dracut: *** Including module: plymouth ***
dracut: *** Including module: kernel-modules ***
dracut: *** Including module: kernel-modules-extra ***
dracut: *** Including module: rootfs-block ***
dracut: *** Including module: terminfo ***
dracut: *** Including module: udev-rules ***
dracut: Skipping udev rule: 40-redhat.rules
dracut: Skipping udev rule: 50-firmware.rules
dracut: Skipping udev rule: 50-udev.rules
dracut: Skipping udev rule: 91-permissions.rules
dracut: Skipping udev rule: 80-drivers-modprobe.rules
dracut: Skipping udev rule: 70-persistent-net.rules
dracut: *** Including module: usrmount ***
dracut: *** Including module: base ***
dracut: *** Including module: fs-lib ***
dracut: *** Including module: shutdown ***
dracut: *** Including modules done ***
dracut: *** Installing kernel module dependencies ***
dracut: *** Installing kernel module dependencies done ***
dracut: *** Resolving executable dependencies ***
dracut: *** Resolving executable dependencies done ***
dracut: *** Hardlinking files ***
dracut: *** Hardlinking files done ***
dracut: *** Generating early-microcode cpio image ***
dracut: *** Constructing GenuineIntel.bin ***
dracut: *** Store current command line parameters ***
dracut: Stored kernel commandline:
dracut:  root=UUID=d26aec20-402c-4a75-9f9b-7db97ef01f41 rootfstype=ext4 rootflags=rw,relatime
dracut: *** Stripping files ***
dracut: *** Stripping files done ***
dracut: *** Creating image file '/boot/initrd-5.10.75-desktop-1.mga8_FIXED.img' ***
dracut: *** Creating initramfs image file '/boot/initrd-5.10.75-desktop-1.mga8_FIXED.img' done ***



Code: Select all
cat /etc/ld.so.conf
include /etc/ld.so.conf.d/*.conf

cat /etc/ld.so.conf.d/*.conf
/usr/lib64/darktable
# This file is knowingly empty since the libraries are in standard search
# path. Please do not remove this file.
/usr/lib64/iscsi
/usr/lib64/lightspark
/usr/lib/llvm10/lib
/usr/lib64/llvm10/lib

cat /etc/ld.so.preload

ls -alR /etc/ld.so.conf.d/
/etc/ld.so.conf.d/:
total 40
drwxr-xr-x   3 root root  4096 Nov 25 16:24 ./
drwxr-xr-x 159 root root 12288 Dec  8 12:45 ../
-rw-r--r--   1 root root    21 Sep 16 06:29 darktable-x86_64.conf
drwxr-xr-x   2 root root  4096 Dec  8 12:28 GL/
lrwxrwxrwx   1 root root    25 Sep  8  2020 GL.conf -> /etc/alternatives/gl_conf
-rw-r--r--   1 root root    17 Feb 29  2020 libiscsi-x86_64.conf
-rw-r--r--   1 root root    22 Aug 11 06:17 lightspark-64.conf
-rw-r--r--   1 root root    20 Dec  7  2020 llvm10-i386.conf
-rw-r--r--   1 root root    22 Dec  7  2020 llvm10-x86_64.conf

/etc/ld.so.conf.d/GL:
total 12
drwxr-xr-x 2 root root 4096 Dec  8 12:28 ./
drwxr-xr-x 3 root root 4096 Nov 25 16:24 ../
-rw-r--r-- 1 root root  114 Nov 27 02:02 standard.conf
[peppermint@localhost ~]$ ls -alR /etc/ld.so.conf.d/
/etc/ld.so.conf.d/:
total 40
drwxr-xr-x   3 root root  4096 Nov 25 16:24 ./
drwxr-xr-x 159 root root 12288 Dec  8 12:45 ../
-rw-r--r--   1 root root    21 Sep 16 06:29 darktable-x86_64.conf
drwxr-xr-x   2 root root  4096 Dec  8 12:28 GL/
lrwxrwxrwx   1 root root    25 Sep  8  2020 GL.conf -> /etc/alternatives/gl_conf
-rw-r--r--   1 root root    17 Feb 29  2020 libiscsi-x86_64.conf
-rw-r--r--   1 root root    22 Aug 11 06:17 lightspark-64.conf
-rw-r--r--   1 root root    20 Dec  7  2020 llvm10-i386.conf
-rw-r--r--   1 root root    22 Dec  7  2020 llvm10-x86_64.conf

/etc/ld.so.conf.d/GL:
total 12
drwxr-xr-x 2 root root 4096 Dec  8 12:28 ./
drwxr-xr-x 3 root root 4096 Nov 25 16:24 ../
-rw-r--r-- 1 root root  114 Nov 27 02:02 standard.conf
[peppermint@localhost ~]$ ls -al /etc/dracut.conf.d/
total 24
drwxr-xr-x   2 root root  4096 Jan 12  2021 ./
drwxr-xr-x 159 root root 12288 Dec  8 12:45 ../
-rw-r--r--   1 root root   526 Dec 26  2020 50-mageia.conf
-rw-r--r--   1 root root    56 Aug 19  2020





I am booted into the latest kernel from the update I just did. SO apparently that Astrill RPM was really messing things up.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Re: Update Mageia Grub can't find kernels too many sym links

Postby Sabungayam » Dec 8th, '21, 06:06

It's not normal. The first thing is, that you should correct the content from your "/etc/dracut.conf.d/51-mageia-resume.conf" file. There are some blanks missing like it is mentioned in your dracut output. But it's only a warning and not the root of your problems.



I have no idea at all what I should do to correct that. Also as I have not messed with it, did the RPM also interfere with that and change it too?

Just wondering.
Sabungayam
 
Posts: 173
Joined: Aug 18th, '20, 06:52

Next

Return to Basic support

Who is online

Users browsing this forum: No registered users and 1 guest

cron