Note: these notes apply to Ubuntu 24.04 LTS.
- Reboot to get to the GRUB screen.
- At the GRUB screen, type
cto enter thegrub >shell. - Run
videoinfo, and identify the particular screen resolution you would like to use.- In this case, say we want to use
2560x1440
- In this case, say we want to use
- Reboot into Linux.
- Edit
/etc/default/grubto add / update the following linesGRUB_CMDLINE_LINUX_DEFAULT='quiet nosplash nomodeset'- in my case, I appended
'nomodeset'1 to'quiet splash'which was already present on this line; ensure the content is inside a single quote).
- in my case, I appended
GRUB_GFXPAYLOAD=2560x1440GRUB_GFXPLAYLOAD_LINUX=keep(note: no quotes around ‘keep’ here)
- Run
'sudo update-grub' - Run
'sudo reboot now'