[comp.windows.x] how do I unpack the core.tar.Z files?

kam@titan.tsd.arlut.utexas.edu (Katherine Minister) (06/20/89)

How do I unpack the core.tar.Z.ab<cde, etc.> files?  file tells me that
they are data, and uncompress won't give them the time of day.  Obviously
we are missing a critical item of information, but what is it?

bob@tinman.cis.ohio-state.edu (Bob Sutterfield) (06/28/89)

The sources were tar(1)ed, then the archive compress(1)ed, then that
file sliced into smaller pieces.  To get something useful, reverse the
process.  That is, say something like

	cat core.tar.Z-part-*|zcat|tar xvf -

meo@stiatl.UUCP (Miles O'Neal) (06/29/89)

In article <284@titan.tsd.arlut.utexas.edu> kam@titan.tsd.arlut.utexas.edu(Katherine Minister) writes:
| How do I unpack the core.tar.Z.ab<cde, etc.> files?  file tells me that
| they are data, and uncompress won't give them the time of day.  Obviously
| we are missing a critical item of information, but what is it?

First you cat them all together.

cat core.tar.Z.* | uncompress | tar xof -

will do the trick under unix.

-Miles
gatech!stiatl!meo