From owner-freebsd-questions Fri Sep 13 01:31:46 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id BAA02793 for questions-outgoing; Fri, 13 Sep 1996 01:31:46 -0700 (PDT) Received: from diablo.ppp.de (diablo.ppp.de [193.141.101.34]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id BAA02787 for ; Fri, 13 Sep 1996 01:31:42 -0700 (PDT) Received: from allegro.lemis.de by diablo.ppp.de with smtp (Smail3.1.28.1 #1) id m0v1Ter-000QhPC; Fri, 13 Sep 96 10:31 MET DST From: grog@lemis.de (Greg Lehey) Organisation: LEMIS, Schellnhausen 2, 36325 Feldatal, Germany Phone: +49-6637-919123 Fax: +49-6637-919122 Received: (grog@localhost) by allegro.lemis.de (8.6.9/8.6.9) id KAA19162; Fri, 13 Sep 1996 10:20:18 +0200 Message-Id: <199609130820.KAA19162@allegro.lemis.de> Subject: Re: Source Code To: gretchen@lgc.com (Gretchen Neubauer) Date: Fri, 13 Sep 1996 10:20:18 +0200 (MET DST) Cc: questions@FreeBSD.org (FreeBSD Questions) In-Reply-To: <32373F12.2EBE@lgc.com> from "Gretchen Neubauer" at Sep 11, 96 05:37:06 pm X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Gretchen Neubauer writes: > > I downloaded the source code directory for one of the version of > FreeBSD. I was unable to unpak it. There is an install.sh shell script > which calls tar with some options that are not supported on either > Solaris 1.x or 2.x (as far as I can find). If I remove the unsupported > options (the ones that give errors), I get a checksum error. Can someone > help me unpak these files? Sure. Why don't you say what the missing options were? If it's 'z', that's a new option to GNU tar to ask for decompression with gzip. The following are equivalent: tar xzvf foo.tar.gz gunzip < foo.tar.gz | tar xvf - If that's not it, let's have more details Greg