Views:
88
Votes: 2
Tags:
boot
grub
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/1211026
Title:
How to switch back to default booting process?
ID:
/2020/02/17/How-to-switch-back-to-default-booting-process_
Created:
February 17, 2020
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
It sounds like your grub is setup to always boot to a specific menu option. Taking this answer:
You can always have grub remember the previous boot option each boot. Use sudo -H gedit /etc/default/grub
, comment the line below and insert two lines below it:
#GRUB_DEFAULT=0 # Rather than first menu option, we'll default to last OS.
GRUB_DEFAULT=saved
GRUB_SAVEDEFAULT=true
Save the changes and run sudo update-grub
.
The first time you boot Recovery will be the default option and you will need to press Escape again but now whatever option you select will be the default for the next boot.