I'm running Ubuntu 13.10. I wanted to change the GRUB timeout by editing the /etc/default/grub
file. But there was no such file in my system.
On startup the GRUB menu is displayed and I'm not experiencing any boot problems. If this file was so important for booting, why am I nit experiencing any boot problems?
sudo
.. http://askubuntu.com/a/148097/179042 – AzkerM Jan 16 '14 at 07:13/boot/grub/grub.cfg
– AzkerM Jan 16 '14 at 07:32GRUB_TIMEOUT
line on that file. – Avinash Raj Jan 18 '14 at 07:14set timeout=10
and changed it toset timeout=-1
as i wanted the menu to wait for me to make a selection. Works for me but sometimes an update causes me to have to re-edit. – user3121023 Jan 18 '14 at 11:22/boot/grub/grub.cfg
file. – Avinash Raj Jan 18 '14 at 13:43### END /etc/grub.d/00_header ###
? if so, you could try addingset timeout=-1
just ahead of that line. If you want a short time out use 2 or 5 instead of -1. That is where timeout is in my .cfg file – user3121023 Jan 18 '14 at 14:35