DEV Community

Cover image for Enable GRUB menu
Sergio Peris
Sergio Peris

Posted on • Edited on • Originally published at sertxu.dev

Enable GRUB menu

Sometimes the GRUB menu is hidden by default on boot, you should enable it changing the GRUB configuration.

sudo vi /etc/default/grub
Enter fullscreen mode Exit fullscreen mode

You should set the timeout seconds, and comment out the default style.

GRUB_TIMEOUT=5
#GRUB_TIMEOUT_STYLE=hidden
Enter fullscreen mode Exit fullscreen mode

Once you've made all the changes, you should apply them by running the following command.

sudo update-grub
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

nextjs tutorial video

Youtube Tutorial Series 📺

So you built a Next.js app, but you need a clear view of the entire operation flow to be able to identify performance bottlenecks before you launch. But how do you get started? Get the essentials on tracing for Next.js from @nikolovlazar in this video series 👀

Watch the Youtube series

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay