From owner-freebsd-amd64@FreeBSD.ORG Fri Mar 4 07:57:35 2005 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89C2016A4CE for ; Fri, 4 Mar 2005 07:57:35 +0000 (GMT) Received: from neo.redjade.org (neo.redjade.org [219.254.21.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01C0943D39 for ; Fri, 4 Mar 2005 07:57:35 +0000 (GMT) (envelope-from ssw@neo.redjade.org) Received: from neo.redjade.org (localhost [127.0.0.1]) by neo.redjade.org (8.13.1/8.13.1) with ESMTP id j247vXjU035437; Fri, 4 Mar 2005 16:57:33 +0900 (KST) (envelope-from ssw@neo.redjade.org) Received: (from ssw@localhost) by neo.redjade.org (8.13.1/8.13.1/Submit) id j247vWNE035436; Fri, 4 Mar 2005 16:57:32 +0900 (KST) (envelope-from ssw) Date: Fri, 4 Mar 2005 16:57:32 +0900 From: Sangwoo Shim To: "Michael W. Oliver" Message-ID: <20050304075732.GA35388@neo.redjade.org> References: <20050303173112.GA65467@gargantuan.com> <20050304031915.36520.qmail@web52308.mail.yahoo.com> <20050304041030.GA6962@gargantuan.com> Mime-Version: 1.0 Content-Type: text/plain; charset=euc-kr Content-Disposition: inline In-Reply-To: <20050304041030.GA6962@gargantuan.com> User-Agent: Mutt/1.5.4i cc: freebsd-amd64@freebsd.org Subject: Re: AMD64/rel 5.3 - setting up Linux compatibility X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Mar 2005 07:57:35 -0000 On Thu, Mar 03, 2005 at 11:10:30PM -0500, Michael W. Oliver wrote: > On 2005-03-03T19:19:15-0800, dR wrote: [snip] > that is a one-liner to extract all of the RPMs, and since you only have > scalc, it looks like you only extracted the first of the many RPMs. > That is what happened to me initially when using... > > rpm2cpio *rpm ...... > > the wildcard wasn't expanded, and only the first RPM was extracted. > > if you are still having trouble, extract them all manually. I did write the procedure from my memory. Apparently wildcard expansion doesn't work well with rpm2cpio. :-( I also extracted them with small shell script, like: for i in *.rpm; do rpm2cpio $i | tar xvf -; done Sorry for the wrong instruction. Regards, Sangwoo Shim