maio
[h2N7SspZmY.git] / data / pages / grub.txt
blobc93a8f2ae0b7938ca116bfae6f38ffe440c75399
1 ====== Grub ======
3 ===== How to change grub configuration =====
4 <code bash>
5 # let's edit grub configuration file
6 $ sudo vim /etc/default/grub
7   # sets the nth list item to be the default choice
8   GRUB_DEFAULT=n
9   # sets n second of wait before the default choice starts
10   GRUB_TIMEOUT=n
11 # updates the grub
12 $ sudo update-grub
13 </code>