From owner-freebsd-current@FreeBSD.ORG Fri Dec 12 13:28:26 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1AF016A4CE for ; Fri, 12 Dec 2003 13:28:26 -0800 (PST) Received: from cmsrelay02.mx.net (cmsrelay02.mx.net [165.212.11.111]) by mx1.FreeBSD.org (Postfix) with SMTP id 7A03243D33 for ; Fri, 12 Dec 2003 13:28:25 -0800 (PST) (envelope-from noackjr@alumni.rice.edu) Received: from uadvg137.cms.usa.net (165.212.11.137) by cmsoutbound.mx.net with SMTP; 12 Dec 2003 21:28:25 -0000 Received: from optimator.noacks.org [65.69.2.219] by uadvg137.cms.usa.net (ASMTP/noackjr@usa.net) via mtad (C8.MAIN.3.11E) with ESMTP id 927HLLVCw0120M37; Fri, 12 Dec 2003 21:28:22 GMT X-USANET-Auth: 65.69.2.219 AUTH noackjr@usa.net optimator.noacks.org Received: from localhost (localhost [127.0.0.1]) by optimator.noacks.org (Postfix) with ESMTP id 7C9E5112; Fri, 12 Dec 2003 15:28:21 -0600 (CST) Received: from optimator.noacks.org ([127.0.0.1]) by localhost (optimator.noacks.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 45771-06; Fri, 12 Dec 2003 15:28:11 -0600 (CST) Received: from alumni.rice.edu (optimator [192.168.1.11]) by optimator.noacks.org (Postfix) with ESMTP id C20748F; Fri, 12 Dec 2003 15:28:10 -0600 (CST) Message-ID: <3FDA32EA.7010906@alumni.rice.edu> Date: Fri, 12 Dec 2003 15:28:10 -0600 From: Jon Noack User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6b) Gecko/20031205 Thunderbird/0.4 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Zoran Kikic References: <19B481CA418DC04CA76EEF2B90B905F11DF1D9@srv-mail.magic-garden.local> In-Reply-To: <19B481CA418DC04CA76EEF2B90B905F11DF1D9@srv-mail.magic-garden.local> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at noacks.org cc: freebsd-current@freebsd.org Subject: Re: AW: just a hint: kmem_map too small - 5.2-CURRENT-20031209 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: noackjr@alumni.rice.edu List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Dec 2003 21:28:27 -0000 On 12/12/2003 7:01 AM, Zoran Kikic wrote: >>This isn't the recommended method of updating a system. >>Did you do a "make buildworld"? See src/UPDATING. >> >>-- >>Steve >> > > > hm, I did 'cd /usr/src && make && make buildworld && make installworld' > after the kernel rebuild. > > > Zoran See also the handbook: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html To summarize (replacing "MYKERNEL" with the name of your kernel config file): 1) "cd /usr/src" 2) "make buildworld" 3) "make buildkernel KERNCONF=MYKERNEL" 4) "make installkernel KERNCONF=MYKERNEL" 5) Reboot into single-user mode to test kernel (also mount and swapon) 6) "cd /usr/src" 7) "make installworld" 8) "mergemaster" 9) "shutdown -r now" Most of the time you can skip steps 5 and 6 (useful when administrating a machine remotely), but this is not supported and has gotten me into trouble on several occasions. Then again, I would have known not to skip them if I had read UPDATING... Jon Noack