If you want GRUB to remember your last choice add:
GRUB_DEFAULT=saved GRUB_SAVEDEFAULT=trueto
/etc/default/grub
and run sudo update-grub
to apply new configuration.
If you want GRUB to remember your last choice add:
GRUB_DEFAULT=saved GRUB_SAVEDEFAULT=trueto
/etc/default/grub
and run sudo update-grub
to apply new configuration.
Q: How to change the default boot menu entry in GRUB2 used widely on Linux systems?
A: You can do it easily as root in three following steps:
update-grub
program and copy entry name that you want to make default.
/etc/default/grub
and add or modify existing GRUB_DEFAULT="your_menu_entry_here".
update-grub
program again to update the grub bootloader configuration.