On Fri, 2004-06-04 at 12:47 -0400, Craig Thomas wrote: > On Fri, 2004-06-04 at 12:39, Chiheb Djabri wrote: > > How to set the default OS to booting... And I would to set 20 sec > > instead of 10 how to do this? > > /etc/grub.conf > which is a link to the real one: /boot/grub/grub.conf and of course try "info grub" The relevant lines in grub.conf are: default=0 timeout=10 This is set up to boot the first entry (zero origin counting) with 10 second timeout. For the second entry and 20 seconds use: default=1 timeout=20 Phil