I know I can change the default menu entry and having worked out that the default I want is (non-obviously!) '0>2' I'll do that in a moment, with my fingers croseed.

sudo dracut -f
sudo grub2-mkconfig -o /boot/grub2/grub.cfg
# dracut -f
# grub2-mkconfig -o /boot/grub2/grub.cfg
su -
dracut -f
grub2-mkconfig -o /boot/grub2/grub.cfg
Yet if I use that same entry "manually", it works fine.
cat /boot/grub2/grub.cfg
cat /proc/cmdline
ls /boot/
sudo dracut -f
sudo grub2-mkconfig -o /boot/grub2/grub.cfg
[root@Athlon ~]# 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 ###
if [ -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="0"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if loadfont unicode ; then
set gfxmode=1680x1050x32
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=en_GB
insmod gettext
fi
terminal_output gfxterm
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
insmod gfxmenu
loadfont ($root)/boot/grub2/themes/maggy/MageiaLogo-Bold-16.pf2
loadfont ($root)/boot/grub2/themes/maggy/MageiaLogo-Bold-20.pf2
loadfont ($root)/boot/grub2/themes/maggy/MageiaLogo-Bold-28.pf2
loadfont ($root)/boot/grub2/themes/maggy/MageiaLogo-Regular-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=10
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=10
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Mageia' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux desktop ...'
linux /boot/vmlinuz-desktop root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro nokmsboot splash quiet noiswmd resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-desktop.img
}
submenu 'Advanced options for Mageia' $menuentry_id_option 'gnulinux-advanced-b1449116-54be-46e4-beda-919e4578d09a' {
menuentry 'Mageia, with Linux desktop' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-desktop-advanced-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux desktop ...'
linux /boot/vmlinuz-desktop root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro nokmsboot splash quiet noiswmd resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-desktop.img
}
menuentry 'Mageia, with Linux desktop (recovery mode)' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-desktop-recovery-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux desktop ...'
linux /boot/vmlinuz-desktop root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro failsafe
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-desktop.img
}
menuentry 'Mageia, with Linux 4.4.26-desktop-1.mga5' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.26-desktop-1.mga5-advanced-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 4.4.26-desktop-1.mga5 ...'
linux /boot/vmlinuz-4.4.26-desktop-1.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro nokmsboot splash quiet noiswmd resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-4.4.26-desktop-1.mga5.img
}
menuentry 'Mageia, with Linux 4.4.26-desktop-1.mga5 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.26-desktop-1.mga5-recovery-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 4.4.26-desktop-1.mga5 ...'
linux /boot/vmlinuz-4.4.26-desktop-1.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro failsafe
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-4.4.26-desktop-1.mga5.img
}
menuentry 'Mageia, with Linux 4.4.22-desktop-1.mga5' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.22-desktop-1.mga5-advanced-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 4.4.22-desktop-1.mga5 ...'
linux /boot/vmlinuz-4.4.22-desktop-1.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro nokmsboot splash quiet noiswmd resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-4.4.22-desktop-1.mga5.img
}
menuentry 'Mageia, with Linux 4.4.22-desktop-1.mga5 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.22-desktop-1.mga5-recovery-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 4.4.22-desktop-1.mga5 ...'
linux /boot/vmlinuz-4.4.22-desktop-1.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro failsafe
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-4.4.22-desktop-1.mga5.img
}
menuentry 'Mageia, with Linux 4.4.16-desktop-1.mga5' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.16-desktop-1.mga5-advanced-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 4.4.16-desktop-1.mga5 ...'
linux /boot/vmlinuz-4.4.16-desktop-1.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro nokmsboot splash quiet noiswmd resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-4.4.16-desktop-1.mga5.img
}
menuentry 'Mageia, with Linux 4.4.16-desktop-1.mga5 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.16-desktop-1.mga5-recovery-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 4.4.16-desktop-1.mga5 ...'
linux /boot/vmlinuz-4.4.16-desktop-1.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro failsafe
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-4.4.16-desktop-1.mga5.img
}
menuentry 'Mageia, with Linux 4.4.13-desktop-1.mga5' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.13-desktop-1.mga5-advanced-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 4.4.13-desktop-1.mga5 ...'
linux /boot/vmlinuz-4.4.13-desktop-1.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro nokmsboot splash quiet noiswmd resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-4.4.13-desktop-1.mga5.img
}
menuentry 'Mageia, with Linux 4.4.13-desktop-1.mga5 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.13-desktop-1.mga5-recovery-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 4.4.13-desktop-1.mga5 ...'
linux /boot/vmlinuz-4.4.13-desktop-1.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro failsafe
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-4.4.13-desktop-1.mga5.img
}
menuentry 'Mageia, with Linux 4.1.15-desktop-2.mga5' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.1.15-desktop-2.mga5-advanced-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 4.1.15-desktop-2.mga5 ...'
linux /boot/vmlinuz-4.1.15-desktop-2.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro nokmsboot splash quiet noiswmd resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-4.1.15-desktop-2.mga5.img
}
menuentry 'Mageia, with Linux 4.1.15-desktop-2.mga5 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.1.15-desktop-2.mga5-recovery-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 4.1.15-desktop-2.mga5 ...'
linux /boot/vmlinuz-4.1.15-desktop-2.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro failsafe
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-4.1.15-desktop-2.mga5.img
}
menuentry 'Mageia, with Linux 3.19.8-desktop-3.mga5' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.8-desktop-3.mga5-advanced-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 3.19.8-desktop-3.mga5 ...'
linux /boot/vmlinuz-3.19.8-desktop-3.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro nokmsboot splash quiet noiswmd resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-3.19.8-desktop-3.mga5.img
}
menuentry 'Mageia, with Linux 3.19.8-desktop-3.mga5 (recovery mode)' --class mageia --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.8-desktop-3.mga5-recovery-b1449116-54be-46e4-beda-919e4578d09a' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod btrfs
set root='hd2,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,gpt1 --hint-efi=hd2,gpt1 --hint-baremetal=ahci2,gpt1 b1449116-54be-46e4-beda-919e4578d09a
else
search --no-floppy --fs-uuid --set=root b1449116-54be-46e4-beda-919e4578d09a
fi
echo 'Loading Linux 3.19.8-desktop-3.mga5 ...'
linux /boot/vmlinuz-3.19.8-desktop-3.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro failsafe
echo 'Loading initial ramdisk ...'
initrd /boot/initrd-3.19.8-desktop-3.mga5.img
}
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_ppc_terminfo ###
### END /etc/grub.d/20_ppc_terminfo ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Mageia 3 (3) (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-3cb13dee-2c9a-4f9c-b270-3785730a4ce2' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
else
search --no-floppy --fs-uuid --set=root 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
fi
linux /boot/vmlinuz
initrd /boot/all.rdz
}
submenu 'Advanced options for Mageia 3 (3) (on /dev/sda5)' $menuentry_id_option 'osprober-gnulinux-advanced-3cb13dee-2c9a-4f9c-b270-3785730a4ce2' {
menuentry 'Mageia 4 install (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz--3cb13dee-2c9a-4f9c-b270-3785730a4ce2' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
else
search --no-floppy --fs-uuid --set=root 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
fi
linux /boot/vmlinuz
initrd /boot/all.rdz
}
menuentry 'linux (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz--3cb13dee-2c9a-4f9c-b270-3785730a4ce2' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
else
search --no-floppy --fs-uuid --set=root 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
fi
linux /boot/vmlinuz BOOT_IMAGE=linux root=LABEL=OS5 splash quiet resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
initrd /boot/initrd.img
}
menuentry 'linux-nonfb (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz--3cb13dee-2c9a-4f9c-b270-3785730a4ce2' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
else
search --no-floppy --fs-uuid --set=root 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
fi
linux /boot/vmlinuz BOOT_IMAGE=linux-nonfb root=LABEL=OS5 splash quiet resume=UUID=20569034-1e07-4d35-befc-d07ff122b981
initrd /boot/initrd.img
}
menuentry 'desktop 3.8.13.4-1.mga3 (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.8.13.4-desktop-1.mga3--3cb13dee-2c9a-4f9c-b270-3785730a4ce2' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
else
search --no-floppy --fs-uuid --set=root 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
fi
linux /boot/vmlinuz-3.8.13.4-desktop-1.mga3 BOOT_IMAGE=desktop_3.8.13.4-1.mga3 root=LABEL=OS5 splash quiet resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
initrd /boot/initrd-3.8.13.4-desktop-1.mga3.img
}
menuentry 'desktop 3.8.13-1.mga3 (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.8.13-desktop-1.mga3--3cb13dee-2c9a-4f9c-b270-3785730a4ce2' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
else
search --no-floppy --fs-uuid --set=root 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
fi
linux /boot/vmlinuz-3.8.13-desktop-1.mga3 BOOT_IMAGE=desktop_3.8.13-1.mga3 root=LABEL=OS5 splash quiet resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
initrd /boot/initrd-3.8.13-desktop-1.mga3.img
}
menuentry 'failsafe (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz--3cb13dee-2c9a-4f9c-b270-3785730a4ce2' {
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
else
search --no-floppy --fs-uuid --set=root 3cb13dee-2c9a-4f9c-b270-3785730a4ce2
fi
linux /boot/vmlinuz BOOT_IMAGE=failsafe root=LABEL=OS5 nokmsboot splash quiet failsafe
initrd /boot/initrd.img
}
}
menuentry 'Mageia 6 (6) (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-cc7cf6d0-63bd-43d4-955a-08010e96b348' {
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 cc7cf6d0-63bd-43d4-955a-08010e96b348
else
search --no-floppy --fs-uuid --set=root cc7cf6d0-63bd-43d4-955a-08010e96b348
fi
linux /boot/vmlinuz-4.7.0-desktop-2.mga6 root=UUID=cc7cf6d0-63bd-43d4-955a-08010e96b348 ro
initrd /boot/initrd-4.7.0-desktop-2.mga6.img
}
submenu 'Advanced options for Mageia 6 (6) (on /dev/sda6)' $menuentry_id_option 'osprober-gnulinux-advanced-cc7cf6d0-63bd-43d4-955a-08010e96b348' {
menuentry 'Mageia (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.7.0-desktop-2.mga6--cc7cf6d0-63bd-43d4-955a-08010e96b348' {
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 cc7cf6d0-63bd-43d4-955a-08010e96b348
else
search --no-floppy --fs-uuid --set=root cc7cf6d0-63bd-43d4-955a-08010e96b348
fi
linux /boot/vmlinuz-4.7.0-desktop-2.mga6 root=UUID=cc7cf6d0-63bd-43d4-955a-08010e96b348 ro
initrd /boot/initrd-4.7.0-desktop-2.mga6.img
}
menuentry 'Mageia (4.7.0-desktop-2.mga6) 6 (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.7.0-desktop-2.mga6--cc7cf6d0-63bd-43d4-955a-08010e96b348' {
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 cc7cf6d0-63bd-43d4-955a-08010e96b348
else
search --no-floppy --fs-uuid --set=root cc7cf6d0-63bd-43d4-955a-08010e96b348
fi
linux /boot/vmlinuz-4.7.0-desktop-2.mga6 root=UUID=cc7cf6d0-63bd-43d4-955a-08010e96b348 ro
initrd /boot/initrd-4.7.0-desktop-2.mga6.img
}
menuentry 'Mageia (4.7.0-desktop-2.mga6) 6 (recovery mode) (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.7.0-desktop-2.mga6--cc7cf6d0-63bd-43d4-955a-08010e96b348' {
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 cc7cf6d0-63bd-43d4-955a-08010e96b348
else
search --no-floppy --fs-uuid --set=root cc7cf6d0-63bd-43d4-955a-08010e96b348
fi
linux /boot/vmlinuz-4.7.0-desktop-2.mga6 root=UUID=cc7cf6d0-63bd-43d4-955a-08010e96b348 ro failsafe
initrd /boot/initrd-4.7.0-desktop-2.mga6.img
}
menuentry 'Mageia (4.6.3-desktop-1.mga6) 6 (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.6.3-desktop-1.mga6--cc7cf6d0-63bd-43d4-955a-08010e96b348' {
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 cc7cf6d0-63bd-43d4-955a-08010e96b348
else
search --no-floppy --fs-uuid --set=root cc7cf6d0-63bd-43d4-955a-08010e96b348
fi
linux /boot/vmlinuz-4.6.3-desktop-1.mga6 root=UUID=cc7cf6d0-63bd-43d4-955a-08010e96b348 ro
initrd /boot/initrd-4.6.3-desktop-1.mga6.img
}
menuentry 'Mageia (4.6.3-desktop-1.mga6) 6 (recovery mode) (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.6.3-desktop-1.mga6--cc7cf6d0-63bd-43d4-955a-08010e96b348' {
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 cc7cf6d0-63bd-43d4-955a-08010e96b348
else
search --no-floppy --fs-uuid --set=root cc7cf6d0-63bd-43d4-955a-08010e96b348
fi
linux /boot/vmlinuz-4.6.3-desktop-1.mga6 root=UUID=cc7cf6d0-63bd-43d4-955a-08010e96b348 ro failsafe
initrd /boot/initrd-4.6.3-desktop-1.mga6.img
}
menuentry 'Mageia (desktop) 6 (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-desktop--cc7cf6d0-63bd-43d4-955a-08010e96b348' {
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 cc7cf6d0-63bd-43d4-955a-08010e96b348
else
search --no-floppy --fs-uuid --set=root cc7cf6d0-63bd-43d4-955a-08010e96b348
fi
linux /boot/vmlinuz-desktop root=UUID=cc7cf6d0-63bd-43d4-955a-08010e96b348 ro
initrd /boot/initrd-desktop.img
}
menuentry 'Mageia (desktop) 6 (recovery mode) (on /dev/sda6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-desktop--cc7cf6d0-63bd-43d4-955a-08010e96b348' {
insmod part_msdos
insmod ext2
set root='hd0,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos6 --hint-efi=hd0,msdos6 --hint-baremetal=ahci0,msdos6 cc7cf6d0-63bd-43d4-955a-08010e96b348
else
search --no-floppy --fs-uuid --set=root cc7cf6d0-63bd-43d4-955a-08010e96b348
fi
linux /boot/vmlinuz-desktop root=UUID=cc7cf6d0-63bd-43d4-955a-08010e96b348 ro failsafe
initrd /boot/initrd-desktop.img
}
}
menuentry 'Mageia 5 (5) (on /dev/sdb6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3' {
insmod part_msdos
insmod ext2
set root='hd1,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos6 --hint-efi=hd1,msdos6 --hint-baremetal=ahci1,msdos6 40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3
else
search --no-floppy --fs-uuid --set=root 40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3
fi
linux /boot/vmlinuz BOOT_IMAGE=linux root=UUID=40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3 splash quiet noiswmd resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
initrd /boot/initrd.img
}
submenu 'Advanced options for Mageia 5 (5) (on /dev/sdb6)' $menuentry_id_option 'osprober-gnulinux-advanced-40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3' {
menuentry 'linux (on /dev/sdb6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz--40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3' {
insmod part_msdos
insmod ext2
set root='hd1,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos6 --hint-efi=hd1,msdos6 --hint-baremetal=ahci1,msdos6 40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3
else
search --no-floppy --fs-uuid --set=root 40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3
fi
linux /boot/vmlinuz BOOT_IMAGE=linux root=UUID=40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3 splash quiet noiswmd resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
initrd /boot/initrd.img
}
menuentry 'linux-nonfb (on /dev/sdb6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz--40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3' {
insmod part_msdos
insmod ext2
set root='hd1,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos6 --hint-efi=hd1,msdos6 --hint-baremetal=ahci1,msdos6 40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3
else
search --no-floppy --fs-uuid --set=root 40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3
fi
linux /boot/vmlinuz BOOT_IMAGE=linux-nonfb root=UUID=40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3 resume=UUID=20569034-1e07-4d35-befc-d07ff122b981
initrd /boot/initrd.img
}
menuentry 'failsafe (on /dev/sdb6)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz--40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3' {
insmod part_msdos
insmod ext2
set root='hd1,msdos6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos6 --hint-efi=hd1,msdos6 --hint-baremetal=ahci1,msdos6 40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3
else
search --no-floppy --fs-uuid --set=root 40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3
fi
linux /boot/vmlinuz BOOT_IMAGE=failsafe root=UUID=40b490d0-bf21-4b9d-b2d9-4a4b9de8d2c3 failsafe noiswmd
initrd /boot/initrd.img
}
}
### END /etc/grub.d/30_os-prober ###
### 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 ###
### BEGIN /etc/grub.d/90_persistent ###
### END /etc/grub.d/90_persistent ###
### BEGIN /etc/grub.d/93_memtest ###
### END /etc/grub.d/93_memtest ###
[root@Athlon ~]# cat /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-4.4.26-desktop-1.mga5 root=UUID=b1449116-54be-46e4-beda-919e4578d09a ro nokmsboot splash quiet noiswmd resume=UUID=20569034-1e07-4d35-befc-d07ff122b981 vga=788
[root@Athlon ~]# ls /boot
config-3.19.8-desktop-3.mga5 symvers-4.4.13-desktop-1.mga5.xz
config-4.1.15-desktop-2.mga5 symvers-4.4.16-desktop-1.mga5.xz
config-4.4.13-desktop-1.mga5 symvers-4.4.22-desktop-1.mga5.xz
config-4.4.16-desktop-1.mga5 symvers-4.4.26-desktop-1.mga5.xz
config-4.4.22-desktop-1.mga5 System.map-3.19.8-desktop-3.mga5
config-4.4.26-desktop-1.mga5 System.map-4.1.15-desktop-2.mga5
dracut/ System.map-4.4.13-desktop-1.mga5
grub/ System.map-4.4.16-desktop-1.mga5
grub2/ System.map-4.4.22-desktop-1.mga5
initrd-3.19.8-desktop-3.mga5.img System.map-4.4.26-desktop-1.mga5
initrd-4.1.15-desktop-2.mga5.img vmlinuz@
initrd-4.4.13-desktop-1.mga5.img vmlinuz-3.19.8-desktop-3.mga5
initrd-4.4.16-desktop-1.mga5.img vmlinuz-4.1.15-desktop-2.mga5
initrd-4.4.22-desktop-1.mga5.img vmlinuz-4.4.13-desktop-1.mga5
initrd-4.4.26-desktop-1.mga5.img vmlinuz-4.4.16-desktop-1.mga5
initrd-desktop.img@ vmlinuz-4.4.22-desktop-1.mga5
initrd.img@ vmlinuz-4.4.26-desktop-1.mga5
symvers-3.19.8-desktop-3.mga5.xz vmlinuz-desktop@
symvers-4.1.15-desktop-2.mga5.xz
[root@Athlon ~]#
This is key and I understood clearly now.By "manually" I mean using arrow keys and the return key to navigate to the 4.4.26 sub-menu entry and hitting the return key. When I do that, all is well.
# ln -sf /boot/vmlinuz-4.4.26-desktop-1.mga5 /boot/vmlinuz-desktop
# ln -sf /boot/initrd-4.4.26-desktop-1.mga5.img /boot/initrd-desktop.img
gohlip wrote:M6 now is working fine but uses linux16/initrd16 for bios-legacy and linuxefi/initrdefi for uefi. Works for either but unnecessary as plain linux/initrd will work for both.
[root@Athlon boot]# ls -l vmlinuz-desktop initrd-desktop.img
lrwxrwxrwx 1 root root 32 Oct 21 20:45 initrd-desktop.img -> initrd-4.4.26-desktop-1.mga5.img
lrwxrwxrwx 1 root root 29 Oct 21 20:45 vmlinuz-desktop -> vmlinuz-4.4.26-desktop-1.mga5
By "manually" I mean using arrow keys and the return key to navigate to the 4.4.26 sub-menu entry and hitting the return key. When I do that, all is well.
if I make the explicit 4.4.26 (non-symlink) menu entry the default in grub.cfg (by setting default to 0>2) I still get kernel panic.
doktor5000 wrote:gohlip wrote:M6 now is working fine but uses linux16/initrd16 for bios-legacy and linuxefi/initrdefi for uefi. Works for either but unnecessary as plain linux/initrd will work for both.
If you don't mind, would probably be useful to put that up in a bugreport so developers can take a look at that.
set default="0"
set default="0>2"
gdisk reports GPT present, MBR protective (whatever that means!)
can anybody advise me what is the correct way of changing the default entry (in the grub.cfg I posted in the thread above)?
GRUB_DEFAULT='Mageia, with Linux 4.4.26-desktop-1.mga5'
# grub2-mkconfig -o /boot/grub2/grub.cfg
GRUB_DEFAULT='Mageia, with Linux 4.4.26-desktop-1.mga5'
[root@Athlon ~]# grub2-mkconfig -o /boot/grub2/grub.cfg
Generating grub configuration file ...
Found theme: /boot/grub2/themes/maggy/theme.txt
Found linux image: /boot/vmlinuz-desktop
Found initrd image: /boot/initrd-desktop.img
Found linux image: /boot/vmlinuz-4.4.26-desktop-1.mga5
Found initrd image: /boot/initrd-4.4.26-desktop-1.mga5.img
Warning: Please don't use old title ‘Mageia, with Linux 4.4.26-desktop-1.mga5’ for GRUB_DEFAULT, use ‘Advanced options for Mageia>Mageia, with Linux 4.4.26-desktop-1.mga5’ (for versions before 2.00) or ‘gnulinux-advanced-b1449116-54be-46e4-beda-919e4578d09a>gnulinux-4.4.26-desktop-1.mga5-advanced-b1449116-54be-46e4-beda-919e4578d09a’ (for 2.00 or later)
Found linux image: /boot/vmlinuz-4.4.22-desktop-1.mga5
Found initrd image: /boot/initrd-4.4.22-desktop-1.mga5.img
Found linux image: /boot/vmlinuz-4.4.16-desktop-1.mga5
Found initrd image: /boot/initrd-4.4.16-desktop-1.mga5.img
Found linux image: /boot/vmlinuz-4.4.13-desktop-1.mga5
Found initrd image: /boot/initrd-4.4.13-desktop-1.mga5.img
Found linux image: /boot/vmlinuz-4.1.15-desktop-2.mga5
Found initrd image: /boot/initrd-4.1.15-desktop-2.mga5.img
Found linux image: /boot/vmlinuz-3.19.8-desktop-3.mga5
Found initrd image: /boot/initrd-3.19.8-desktop-3.mga5.img
Found Mageia 3 (3) on /dev/sda5
Found Mageia 6 (6) on /dev/sda6
Found Mageia 5 (5) on /dev/sdb6
Found Mageia 5 on /dev/sdc1
done
GRUB_DEFAULT=‘gnulinux-advanced-b1449116-54be-46e4-beda-919e4578d09a>gnulinux-4.4.26-desktop-1.mga5-advanced-b1449116-54be-46e4-beda-919e4578d09a’
[pop@Two ~]$ kdesu kate /etc/default/grub
[pop@Two ~]$ sudo grub2-mkconfig -o /boot/grub2/grub.cfg
[sudo] password for pop:
Generating grub configuration file ...
Found theme: /boot/grub2/themes/maggy/theme.txt
Found linux image: /boot/vmlinuz-4.8.4-desktop-1.mga6
Found initrd image: /boot/initrd-4.8.4-desktop-1.mga6.img
Found linux image: /boot/vmlinuz-4.8.3-desktop-1.mga6
Found initrd image: /boot/initrd-4.8.3-desktop-1.mga6.img
Found linux image: /boot/vmlinuz-desktop
Found initrd image: /boot/initrd-desktop.img
done
[pop@Two ~]$ sudo grub2-install -V
grub2-install (GRUB) 2.02~beta3
[pop@Two ~]$
GRUB_DEFAULT=saved
GRUB_DEFAULT='Mageia (4.8.3-desktop-1.mga6) 6'
My guess is still it's something to do with timing.
doktor5000 wrote:gohlip wrote:M6 now is working fine but uses linux16/initrd16 for bios-legacy and linuxefi/initrdefi for uefi. Works for either but unnecessary as plain linux/initrd will work for both.
If you don't mind, would probably be useful to put that up in a bugreport so developers can take a look at that.
.....automatically modifies linuxefi -> linux and initrdefi -> initrd to keep upgrade path working as they are used in mga4
mla wrote:OK, that worked. Though now I have to re-educate the family, because just hitting RETURN when the grub menu appears, no longer boots the machine bypassing the 10 second delay. One has to hit RETURN, wait for the sub-menu to be displayed and then hit RETURN again. And if any grub2 developer thinks this is something "users" should just put up with, they don't know real users as I do.
Anyway, thanks for the help -- appreciated! Just why the symlinked version does not work remains a mystery. My guess is still it's something to do with timing.
Okay, but my bet on your issue is still on your gpt no partition disk and mixing it all up with the original msdos disks
Have you considered trying to replace the sym-links with a copy of the actual files as an alternative workaround?
You might want to try f2fs filesystem on your ssd (but please fix the partitioning first)
What is it you suggest I should fix and how should I fix it?
gohlip wrote:For new disks, especially 'raw' disks, it's best to set partitioning table before use. And then set up partitions after that.
I use gparted, at device tab (top of the gui), set to either 'msdos' or 'gpt'.
If there is an existing disk, make the new disk the same partitioning as the existing disk.
Cheers.
Users browsing this forum: No registered users and 1 guest