2023-02-06grub

发布时间 2023-10-09 18:42:33作者: kasusa

+++
title = "grub settings for noobies"
description = ""
date = 2023-02-06T14:21:50+08:00
featured = false
comment = true
toc = true
reward = true
categories = [
""
]
tags = [
"ubuntu"
]
series = []
images = []
+++

turn on grub menu

if your grub menu don't show when you boot up your system , you can follow this :

edit grub config

sudo vim /etc/default/grub
# GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10

commit

sudo update-grub

get a theme

gnome grub themes store

deadsec theme

change some grub settings

edit grub config

sudo vim /etc/default/grub

find and change:

GRUB_DEFAULT=saved

add this line

GRUB_SAVEDEFAULT=true

this 2 line make grub rember your choice

commit

sudo update-grub