repo.or.cz
/
h2N7SspZmY.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
maio
[h2N7SspZmY.git]
/
data
/
pages
/
grub.txt
blob
c93a8f2ae0b7938ca116bfae6f38ffe440c75399
1
====== Grub ======
2
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>