I tried all of the solutions in How to get to the GRUB menu at boot-time?, but nothing seems to work.
Asked
Active
Viewed 1.6k times
1 Answers
10
The missing piece from How to get to the GRUB menu at boot-time? seems to be that Ubuntu 24.04 and 22.04 (and possibly other releases as well) can't get this MacBook Pro's Nvidia GPU (GeForce 320M) to show a higher-resolution graphical terminal, so you have to force it into the "text mode".
You can do this by editing /etc/default/grub: simply uncomment the line GRUB_TERMINAL=console. And then don't forget to run sudo update-grub.
The full steps:
- Open
/etc/default/grubas admin - e.g. by runninggnome-text-editor admin:///etc/default/gruborsudo nano /etc/default/grub- Make sure that
GRUB_TIMEOUT_STYLEis NOT commented out and set it tomenuas opposed tohidden - Make sure that
GRUB_TIMEOUTis NOT commented out and set it to5as opposed to0- it's in seconds - Make sure that
GRUB_TERMINALis NOT commented out and set it toconsole - If you'd also like to see on your screen the kernel and systemd log messages during booting instead of the splash screen (the Ubuntu logo with a spinner underneath it), also change
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"toGRUB_CMDLINE_LINUX_DEFAULT=""
- Make sure that
- Run
sudo update-grub
Jack Z.
- 193