From owner-freebsd-questions@FreeBSD.ORG Fri Mar 28 21:41:02 2008 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 9D003106566B for ; Fri, 28 Mar 2008 21:41:02 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 92CC48FC13; Fri, 28 Mar 2008 21:41:01 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <47ED65F3.5040606@FreeBSD.org> Date: Fri, 28 Mar 2008 22:41:07 +0100 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.12 (Macintosh/20080213) MIME-Version: 1.0 To: Mark Moellering References: <200803272241.11944.mark@msen.com> <200803281655.58441.mark@msen.com> <47ED5D2B.9020109@FreeBSD.org> <200803281721.28049.mark@msen.com> In-Reply-To: <200803281721.28049.mark@msen.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: problems with i386 jail on amd64 install 7.0 Release 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: Fri, 28 Mar 2008 21:41:02 -0000 Mark Moellering wrote: > On Friday 28 March 2008 05:03:39 pm Kris Kennaway wrote: >> Mark Moellering wrote: >>> On Friday 28 March 2008 04:51:08 pm Kris Kennaway wrote: >>>> Mark Moellering wrote: >>>>> On Friday 28 March 2008 03:27:27 pm you wrote: >>>>>> Mark Moellering wrote: >>>>>>> On Friday 28 March 2008 06:23:49 am Kris Kennaway wrote: >>>>>>>> Mark Moellering wrote: >>>>>>>>> I have been trying to install an i386 jail on an amd64 install. I >>>>>>>>> added Target=i386 to the command line in the make buildworld and >>>>>>>>> installworld commands. I keep getting the following (or similar) >>>>>>>>> error >>>>>>>> 'Target' does nothing, there is no such variable. If you meant >>>>>>>> 'TARGET', that is a real variable but not the one you want. You >>>>>>>> need to add 'TARGET_ARCH=i386' to your build/installworld to >>>>>>>> successfully cross-compile. >>>>>>>> >>>>>>>> Kris >>>>>>> Kris, >>>>>>> Thanks for the reply. >>>>>>> I aplogize, I should have been more explicit. >>>>>>> >>>>>>> I tried TARGET=i386 ; TARGET_ARCH=i386; and both together, all gave >>>>>>> the same error. >>>>>>> >>>>>>> (/libexec/ld-elf.so.1: Shared object "libedit.so.6" not found, >>>>>>> required by "sh") >>>>>>> >>>>>>> Have you or has anyone else on the list successfuly done this? >>>>>> Yes, frequently. Does the library exist in the chroot and is it an >>>>>> i386 library (use file(1))? >>>>>> >>>>>> Kris >>>>> Thanks Kris, you're a lifesaver. >>>>> >>>>> The response I get using File is: >>>>> >>>>> libedit.so.6: ELF 32-bit LSB shared object, Intel 80386, version 1 >>>>> (FreeBSD), dynamically linked, stripped >>>> OK, that is correct. Is the rest of the chroot configured properly, >>>> e.g. did you populate /etc and /var? >>>> >>>> Kris >>> /etc and /var are populated >> what if you run other binaries, e.g. chroot /chroot ls, etc? Do any of >> them work? If not, then something is either wrong with the >> /var/run/ld.so.hints, the /libexec/ld-elf.so.1, etc. >> >> Kris > > this is no ld-elf.so.hints under the chroot. Should i copy or > link /var/run/ld-elf32.so.hints to $chroot/var/run/ld-elf32.so.hints ? Aha, so it's not populated after all :) You can try copying /var/run/ld-elf.so.hints (not ld-elf32) but this is a binary file and I don't know if it is compatible. Otherwise just copy from an i386 system or run chroot /chroot /sbin/ldconfig -m /lib Kris