From owner-freebsd-questions@FreeBSD.ORG Sat Feb 27 22:15:48 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B81F11065670 for ; Sat, 27 Feb 2010 22:15:48 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-vw0-f54.google.com (mail-vw0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 6969A8FC22 for ; Sat, 27 Feb 2010 22:15:48 +0000 (UTC) Received: by vws14 with SMTP id 14so569727vws.13 for ; Sat, 27 Feb 2010 14:15:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=eY4Uhx6838HD7nbHMCXWjZpzIu0JYlIIgsMhe+WWP+s=; b=HVYy8JW7/CAQ/MRscAOzetz+21pMddeI/FXCjKFzxzH/0CvGxK2XE/4AJr2r5M2CWU sIrzEJ/vdhLfzJnGdTIk/tCaDIUm9T508LhA7QZNwfFKNDCTzeGZyaFgnXsRDQIgtB46 Svai0b2jpnR1aG981cf4W2duu8a2+BpJbRjzk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=lPb07H+ZdrCQYmY9chtd3JdxJIUmox7UTq3a9ub6qCljNnECVwbNpGEVTJELJ+nO0c kmlEDXGotNIrQlwOvXI/GB2DLbxo4D1c1T4AO8LNzRszfmNjPO6t9JaP5WJCrFD4fRxT yQI0TryyMb1o5HafloY6qwis5ki7uzi8eSzmM= Received: by 10.220.126.203 with SMTP id d11mr1495508vcs.76.1267308938136; Sat, 27 Feb 2010 14:15:38 -0800 (PST) Received: from orion.hsd1.pa.comcast.net (c-71-230-240-241.hsd1.pa.comcast.net [71.230.240.241]) by mx.google.com with ESMTPS id 32sm14336062vws.5.2010.02.27.14.15.36 (version=SSLv3 cipher=RC4-MD5); Sat, 27 Feb 2010 14:15:36 -0800 (PST) Date: Sat, 27 Feb 2010 17:12:18 -0500 From: Glen Barber To: Graeme Dargie Message-ID: <20100227221218.GA2583@orion.hsd1.pa.comcast.net> References: <01FB8F39BAD0BD49A6D0DA8F7897392904F771@Mercury.galaxy.lan.lcl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <01FB8F39BAD0BD49A6D0DA8F7897392904F771@Mercury.galaxy.lan.lcl> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-questions@freebsd.org Subject: Re: Question about Jails 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: Sat, 27 Feb 2010 22:15:48 -0000 Hi, Graeme Dargie wrote: > Hello List, > > > > I understand this is possible but cant seem to find any how to`s or > guides out on the net, I would like to set up a jail running FreeBSD 8.0 > i386 on a system that is running FreeBSD 8.0 amd64. I know this may > sound somewhat odd but I have a program that I need to run that just > will not compile under amd64. > You want to set the TARGET for buildworld, which will create /usr/obj/i386. Use TARGET again for installworld to install from that obj directory. make TARGET=i386 buildworld make TARGET=i386 DESTDIR=/usr/jails/myi386jail installworld Regards, -- Glen Barber