Results 1 to 10 of 10
Hey guys!
Erm... I'm the guy, whos boss made him setup a linux server
I have Ubuntu 9.10 setup... for the only purpose to be a public FTP server (don't ...
- 02-12-2010 #1Just Joined!
- Join Date
- Feb 2010
- Posts
- 4
[SOLVED] Boot automaticaly
Hey guys!
Erm... I'm the guy, whos boss made him setup a linux server
I have Ubuntu 9.10 setup... for the only purpose to be a public FTP server (don't ask)
Anyways....
I'm having the following issue:
Whenever I reboot the computer I get a list with kernels to choose from. Basicly I always choose the latest, but is there a way to get rid of that menu and just boot the latest kernel by default? I mean... if there's a power crash in the neighbourhood the computer will start, but won't boot and will be useless...
Thanks in advance.
- 02-12-2010 #2Just Joined!
- Join Date
- Feb 2010
- Posts
- 18
Hi,
tipically grub runs the last kernel after a default timeout.
If you set the timeout to 1 (sec) it will start almost immediatly!
byeLast edited by oz; 02-17-2010 at 09:56 PM. Reason: removed spam
- 02-12-2010 #3Just Joined!
- Join Date
- Feb 2010
- Posts
- 4
Well... that's kind of my problem actually - there is no timeout... it just waits for a choice... could you please tell me how to change that?
- 02-12-2010 #4Just Joined!
- Join Date
- Feb 2010
- Posts
- 18
Hi,
by default ubuntu should have a timeout: this is my file
/etc/default/grub
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT="10"
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
My system has a 10sec timeout: check if you have a different value (I think -1 stands for wait forever)
byeLast edited by oz; 02-17-2010 at 09:55 PM. Reason: removed spam
- 02-12-2010 #5-1 does mean it waits for user input.My system has a 10sec timeout: check if you have a different value (I think -1 stands for wait forever)
https://help.ubuntu.com/community/Grub2
- 02-12-2010 #6
To be on safer side, set GRUB_TIMEOUT="10" value to "2". Make sure to execute sudo update-grub command to generate new grub.cfg file after editing /etc/default/grub file.
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 02-15-2010 #7
Or you edit the file /boot/grub/menu.lst directly:
Code:sudo nano /boot/grub/menu.lst
- 02-15-2010 #8It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 02-16-2010 #9
- 02-17-2010 #10Just Joined!
- Join Date
- Feb 2010
- Posts
- 4




