1

Sometimes, when I reboot the dirty way, I get a menu (black screen, grey letters) .

This is asking to choose what/how I want to launch Ubuntu (very sorry I dont remind which modes).

How is it possible to disable it ? cause the computer has no screen and I dont want boot to be stopped by this screen.

3pic
  • 467
  • 1
  • 8
  • 20

1 Answers1

3

You need to change the grub boot settings..

sudo -H gedit /etc/default/grub

you need to change this line:

GRUB_HIDDEN_TIMEOUT_QUIET=false

to

GRUB_HIDDEN_TIMEOUT_QUIET=true

save configuration file and update grub:

sudo update-grub

There are also some grub setting applications that can help you with this using a gui.

Zanna
  • 70,465
Maokei
  • 109