grub2 isn't really fit in the best screen resolution that my laptop can support (1280 x 800).
How can I do this without using a third party application ?
6 Answers
To do this safely requires two steps.
Step 1: find the preferred mode
Reboot and press and hold Shift to display your grub. Press C to enter console mode. Then type (for Ubuntu versions before 18.04):
$ vbeinfoFor Ubuntu 18.04 and later:
$ videoinfoThis will display various stuff how grub recognizes your display. At the bottom is "preferred mode" - in your case it should say 1280x800. Note down the value.
Note: sometimes, some buggy video cards incorrectly give Grub the wrong preferred resolution - if the preferred mode is much higher than you were expecting, then select the nearest mode in the list displayed that you were expecting.
Press Esc to return to grub and press Enter to boot.
Step 2: Setting the resolution in grub
Reach for your terminal and type
$ sudo nano /etc/default/grubfind the line
#GRUB_GFXMODE=640x480remove the # and change 640x480 with the preferred mode you wrote down. E.g.:
GRUB_GFXMODE=1280x800save, then type
$ sudo update-grubNote: the preferred mode has to be among those listed by vbeinfo. For example, if your preferred mode is 1920x1080 (a common 16x9 aspect ratio setting), your preferred mode is NOT supported by vbeinfo and may not work correctly. In fact, there do not seem to be any 16x9 modes supported by vbeinfo, as of Ubuntu 13.04. In that case you could try falling back to something common like 640x480, which, it seems most monitors support and vbeinfo supports. Also, not all the modes supported by vbeinfo are necessarily supported by your monitor and you may have to experiment.
10I'm using Ubuntu 16.04 and things are a little different in the packaged version of Grub for me.
The vbeinfo command does not exist.
- Turn on
- At the grub menu press c to get the grub comand line
- Type
videoinfo
This lists all the modes - it is the <width>x<height> you need to make note of. - Optionally, there is a
videotestcommand which you can use to test a given resolution, e.g.videotest 1280x1024. However, while this test worked for me, I could not then get back to the grub menu! So that's not quite as useful (unless anyone can explain how to escape the test.) - Boot up fully and edit (sudo)
/etc/default/grubbut the line you're looking for is now calledGRUB_GFXMODE. So un-comment and set that to your desired mode. - Run
update-gruband reboot.
I am running 14.04LTS on an ASUS M51AC with an Nvidia 625GT OEM. I found that in addition to the accepted answer, I needed to also add the line:
GRUB_GFXPAYLOAD="keep"to /etc/default/grub.
2For me on Ubuntu 17.10 server it was
GRUB_GFXPAYLOAD_LINUX="keep"
GRUB_GFXMODE="1920x1080x32"I also had to set the following to prevent shutdown from hanging
GRUB_CMDLINE_LINUX_DEFAULT="nomodeset" Easy to use Grub2 settings customizer. Go to "Preferences" -> "Appearance"
- check "custom resolution" and select one of the available resolution
- click "close"
- hit "save"
- close program and restart computer
For Ubuntu 20.04 LTS this worked for me (on ESXi VMs):
GRUB_CMDLINE_LINUX=""make sure to remove maybe-ubiquity
#GRUB_TERMINAL=consolemake sure to comment/disable this line.
GFX_GFXMODE=1024x768
GFX_PAYLOAD_LINUX="keep"change to desired resolution