From owner-freebsd-questions@FreeBSD.ORG Wed Jun 4 19:53:31 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0C6B37B401 for ; Wed, 4 Jun 2003 19:53:31 -0700 (PDT) Received: from msr13.hinet.net (msr13.hinet.net [168.95.4.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id B91FB43FBD for ; Wed, 4 Jun 2003 19:53:30 -0700 (PDT) (envelope-from y2kbug@ms25.hinet.net) Received: from sonic.utopia.com (61-227-219-188.HINET-IP.hinet.net [61.227.219.188]) by msr13.hinet.net (8.9.3/8.9.3) with SMTP id KAA17903 for ; Thu, 5 Jun 2003 10:53:06 +0800 (CST) Date: Thu, 5 Jun 2003 10:03:15 +0800 From: Robert Storey To: freebsd-questions@freebsd.org Message-Id: <20030605100315.6b6d616e.y2kbug@ms25.hinet.net> In-Reply-To: <9B64E2DA-96E4-11D7-9979-0030654886A6@overdose.com> References: <9B64E2DA-96E4-11D7-9979-0030654886A6@overdose.com> X-Mailer: Sylpheed version 0.8.6 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: booteasy / syslog X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jun 2003 02:53:32 -0000 On Thu, 5 Jun 2003 00:31:03 +0100 Matthew Ryan wrote: > Hi there, > > Does anybody know how i can configure booteasy not to remember the last > choice i made. I would like it to default to one particular boot (XP in > fact), so that my 5 year old does not occasionally find himself looking > at a FreeBSD login prompt. > > Failing that, can anyone recommend an alternative boot manager. GRUB is good. A very informative article about GRUB can be found here: http://www2.linuxjournal.com/lj-issues/issue85/4622.html If you decide to use GRUB, you'll need a few lines in /boot/grub/menu.lst to load FBSD - the following is what I have: title FreeBSD root (hd0,1,a) kernel /boot/loader boot Obviously, the second line will vary depending on which partition you've installed FBSD. And if you've got Windows on the first partition: title Windows rootnoverify (hd0,0) chainloader +1 I suggest you download the GRUB boot floppy and experiment with that before deciding if you want to install it to your MBR. hope this helps, Robert