From owner-freebsd-questions Tue Nov 5 19:53:49 2002 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 169E437B401 for ; Tue, 5 Nov 2002 19:53:48 -0800 (PST) Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09A8143E3B for ; Tue, 5 Nov 2002 19:53:47 -0800 (PST) (envelope-from keramida@ceid.upatras.gr) Received: from gray.sea.gr (patr530-b220.otenet.gr [212.205.244.228]) by mailsrv.otenet.gr (8.12.6/8.12.6) with ESMTP id gA63rg5D010805; Wed, 6 Nov 2002 05:53:43 +0200 (EET) Received: from gray.sea.gr (gray [127.0.0.1]) by gray.sea.gr (8.12.6/8.12.6) with ESMTP id gA63rfrC005593; Wed, 6 Nov 2002 05:53:42 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by gray.sea.gr (8.12.6/8.12.6/Submit) id gA63rflB005592; Wed, 6 Nov 2002 05:53:41 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Wed, 6 Nov 2002 05:53:41 +0200 From: Giorgos Keramidas To: Charles Pelletier Cc: freebsd-questions@FreeBSD.ORG Subject: Re: make fails during upgrade, so... Message-ID: <20021106035341.GN676@gray.sea.gr> References: <003201c28522$bc540380$32040101@hume> <20021106034102.GK676@gray.sea.gr> <00dd01c28546$4cc5edc0$32040101@hume> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <00dd01c28546$4cc5edc0$32040101@hume> Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 2002-11-05 21:40, Charles Pelletier wrote: > no unfortunately, i have been using the old way... > 1. cvsup cvsupfile OK so far. > 2. make -j4 buildworld Try without -j4. > 3. make installworld That's not a good thing to do in this part of the procedure. This should be the last step you do, after you have built, installed and rebooted your new kernel in single user mode. > 4. make new kernel: (/usr/src/sys/i386/conf/) > cp OLDKERNEL NEWKERNEL > ee NEWKERNEL (replace name of oldkernel with newkernel name) > save So far, so good. > run /usr/sbin/config NEWKERNEL > make depend ../../compile/NEWKERNEL > make > make install Try replacing these with: # cd /usr/src/sys/i386/conf # config -d /usr/obj/usr/src/sys/NEWKERNEL NEWKERNEL # cd /usr/obj/usr/src/sys/NEWKERNEL # make depend # make clean # make all # make install Then reboot. Load your new kernel in single user mode. Start /bin/sh and install everything with: # adjkerntz -i # fsck -p # mount -u / # mount -va # cd /usr/src # make installworld Finally, run mergemaster to update /etc: # mergemaster -u 022 -s That's more or less what I do at least once a day. Giorgos. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message