From owner-freebsd-current@FreeBSD.ORG Tue Feb 24 20:59:32 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB3A31065715 for ; Tue, 24 Feb 2009 20:59:32 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from acadia.cs.uoguelph.ca (acadia.cs.uoguelph.ca [131.104.94.221]) by mx1.freebsd.org (Postfix) with ESMTP id 902518FC24 for ; Tue, 24 Feb 2009 20:59:32 +0000 (UTC) (envelope-from rmacklem@uoguelph.ca) Received: from muncher.cs.uoguelph.ca (muncher.cs.uoguelph.ca [131.104.91.102]) by acadia.cs.uoguelph.ca (8.13.1/8.13.1) with ESMTP id n1OKxMiR016134; Tue, 24 Feb 2009 15:59:22 -0500 Received: from localhost (rmacklem@localhost) by muncher.cs.uoguelph.ca (8.11.7p3+Sun/8.11.6) with ESMTP id n1OL3sg18966; Tue, 24 Feb 2009 16:03:54 -0500 (EST) X-Authentication-Warning: muncher.cs.uoguelph.ca: rmacklem owned process doing -bs Date: Tue, 24 Feb 2009 16:03:54 -0500 (EST) From: Rick Macklem X-X-Sender: rmacklem@muncher.cs.uoguelph.ca To: Stephen Montgomery-Smith In-Reply-To: <49A45558.9060000@math.missouri.edu> Message-ID: References: <1235502625.4345.2.camel@localhost.localdomain> <49A45558.9060000@math.missouri.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Scanned-By: MIMEDefang 2.63 on 131.104.94.221 Cc: Sean Bruno , FreeBSD Current Subject: Re: Default FS Layout Too Small? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Feb 2009 20:59:34 -0000 On Tue, 24 Feb 2009, Stephen Montgomery-Smith wrote: > Sean Bruno wrote: > cd /usr/src > make installkernel > .... this dies with a "file system full" error > rm -r /boot/kernel.old > make installkernel > Although I wouldn't recommend it "in general", for your case I would make sure everything you need is configured into the kernel you build (so it doesn't need any loadable modules) and then: cd /usr/src/sys//compile/GENERIC mkdir /boot/kernel.new cp kernel /boot/kernel.new so that you can boot the new one and see it work before deleting the old one. Just a suggestion, rick