Often when we reinstall Ubuntu that grub boot menu with the kernel options show up for you to choose which one should load. Annoying isn't it?
Here is how to disable the menu:
sudo gedit /etc/default/grub
Remove the # mark from second line,
and change the line
GRUB_HIDDEN_TIMEOUT_QUIET=false
to
GRUB_HIDDEN_TIMEOUT_QUIET=true
The main part of the file should look like this
...
GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
...
Then run sudo update-grub command and reboot
Nenhum comentário:
Postar um comentário