From owner-freebsd-questions@FreeBSD.ORG Thu Dec 21 14:03:34 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 297A816A4A7 for ; Thu, 21 Dec 2006 14:03:34 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id 84DA913C464 for ; Thu, 21 Dec 2006 14:03:33 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from kobe.laptop (host5.bedc.ondsl.gr [62.103.39.229]) (authenticated bits=128) by igloo.linux.gr (8.13.8/8.13.8/Debian-3) with ESMTP id kBLDqNlW009036 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 21 Dec 2006 15:52:29 +0200 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.13.8/8.13.8) with ESMTP id kBLDqEEF001559; Thu, 21 Dec 2006 15:52:14 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.13.8/8.13.8/Submit) id kBKMSlxh001112; Thu, 21 Dec 2006 00:28:47 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 21 Dec 2006 00:28:47 +0200 From: Giorgos Keramidas To: Robin Becker Message-ID: <20061220222847.GA1026@kobe.laptop> References: <458982FB.1010906@chamonix.reportlab.co.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <458982FB.1010906@chamonix.reportlab.co.uk> X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-2.832, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.12, BAYES_00 -2.60, DATE_IN_PAST_12_24 1.25, DNS_FROM_RFC_ABUSE 0.20) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: freebsd-questions@freebsd.org Subject: Re: make world for a jail 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: Thu, 21 Dec 2006 14:03:34 -0000 On 2006-12-20 18:37, Robin Becker wrote: > I'm trying to make world for a jail build following the recipe in > http://www.onlamp.com/pub/a/bsd/2003/09/04/jails.html > > First off I started by updating the src tree. I copied > /usr/share/examples/cvsup/stable-supfile edited the host name > > then I ran > > SERVER=`fastest_cvsup -q -c ca,us` > cvsup -L2 -h $SERVER /root/bin/stable-supfile > > that seemd fine and stuff appeared in /usr/src as expected. > > mkdir /usr/jails > mkdir /usr/jails/mailserver > cd /usr/src > make world DESTDIR=/usr/jails/mailserver That's not going to work, unless you have already run at least *once* the commands: # cd /usr/src # make DESTDIR=/usr/jails/mailserver distribution before running the "installworld" stage of "make world".