From owner-freebsd-questions@FreeBSD.ORG Mon Sep 4 07:22:08 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 6BF3D16A4DA for ; Mon, 4 Sep 2006 07:22:08 +0000 (UTC) (envelope-from mitch@mdickinson.org) Received: from mail.mdickinson.org (mdickinson.org [64.74.153.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id F08F343D46 for ; Mon, 4 Sep 2006 07:22:07 +0000 (GMT) (envelope-from mitch@mdickinson.org) Received: from adsl-065-013-024-060.sip.asm.bellsouth.net ([65.13.24.60] helo=hydrogen.mdickinson.org) by mail.mdickinson.org with esmtp (Exim 4.62) (envelope-from ) id 1GK8mT-0007j8-Gl for freebsd-questions@freebsd.org; Mon, 04 Sep 2006 03:22:05 -0400 Received: by hydrogen.mdickinson.org with local (Exim 4.63) id 1GK8mS-0009FE-BU for freebsd-questions@freebsd.org; Mon, 04 Sep 2006 03:22:04 -0400 Date: Mon, 4 Sep 2006 03:22:04 -0400 From: Mitch To: freebsd-questions@freebsd.org Message-ID: <20060904072203.GB58416@hydrogen.mdickinson.org> Mail-Followup-To: freebsd-questions@freebsd.org References: <000301c6cfea$f6e55780$0200a8c0@satellite> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000301c6cfea$f6e55780$0200a8c0@satellite> User-Agent: Mutt/1.5.12-2006-07-14 Sender: Mitch Subject: Re: building and installing world on two separate machines X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Sep 2006 07:22:08 -0000 On 09/04/06 02:25 AM, Dave wrote: > Hello, > I have a machine that i want to upgrade from 5.x to 6.1. I've got a 6.1 > world built on a much faster system and would like to just install it on > this machine. I thought about nfs, but i have to drop to single user mode > to do the make installworld and won't have nfs available. Is there a way i > can install this already compiled world on the slower box without having to > remake it? > Thanks. > Dave. NOTE: I've never tried anything like this. Hopefully someone else can chime in here. I think I would try this: - make buildworld; make buildkernel on the fast box - copy over /usr/src and /usr/obj - make installkernel on the target machine (assuming buildkernel and installkernel targets still exist..) - copy out /usr/src/usr.sbin/mergemaster/mergemaster.sh to /usr/sbin/mergemaster (might not be needed) - reboot to single user and do the normal mergemaster -p; make installworld; mergemaster - reboot and hope for the best. Sounds good enough to me...