Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 Sep 1996 17:18:10 GMT
From:      Peter Childs <pjchilds@imforei.apana.org.au>
To:        gretchen@lgc.com, freebsd-questions@freebsd.org
Subject:   Re: Source Code
Message-ID:  <199609131718.RAA02098@al.imforei.apana.org.au>

next in thread | raw e-mail | index | archive | help
In article <32373F12.2EBE@lgc.com> you wrote:
: 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?

 You'll see that they are in "sets" of files.. like....
 subin.aa subin.ab subin.ac (for example)

 Try something like... 

 cat subin.a* | gzip -d | tar tvf -

 which should produce a list of all the files in that multipart
 compressed tar archive... if you don't have gzip, you'll need it.

 To then extract use...

 cat subin.a* | gzip -d | tar xvf - -C /extract/em/here

 where "/extract/em/here" is where you wanna extract the files.

 Peter

--
 Peter Childs  ---  http://www.imforei.apana.org.au/~pjchilds
  Finger pjchilds@al.imforei.apana.org.au for public PGP key
         Drag me, drop me, treat me like an object!



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199609131718.RAA02098>