The thing is GRUB doesn't load up automatically , I have to do it manually, so can someone tell me how can I make it load up automatically everytime I boot?
Asked
Active
Viewed 1,714 times
0
1 Answers
4
You'll need to edit your /etc/default/grub
file.
Open terminal and type:
sudo nano /etc/default/grub
(or replace by your favourite editor)
Place "#" at the start of line GRUB_HIDDEN_TIMEOUT=0
, then simply run sudo update-grub
.

Michal Polovka
- 1,273

Duncan
- 2,609
- 2
- 15
- 17
-
Ok I'm in terminal I put # in front of GRUB_HIDDEN_TIMEOUT=0 now how do I save it – Naiem da Legend Oct 16 '16 at 13:09
-
cat /etc/default/grub
and edit your question with output – Michal Polovka Oct 16 '16 at 10:55