home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / unix / shell / 5053 < prev    next >
Encoding:
Text File  |  1992-12-14  |  1.1 KB  |  39 lines

  1. Newsgroups: comp.unix.shell
  2. Path: sparky!uunet!mcsun!chsun!bernina!dapor
  3. From: dapor@nessie.cs.id.ethz.ch (Carlo Dapor)
  4. Subject: Re: recovering files with .tar-z extensions
  5. Message-ID: <1992Dec14.112736.4613@bernina.ethz.ch>
  6. Sender: Carlo Dapor
  7. Organization: Swiss Federal Institute of Technology (ETH), Zurich, CH
  8. References: <103822@bu.edu>
  9. Date: Mon, 14 Dec 1992 11:27:36 GMT
  10. Lines: 27
  11.  
  12.     Hi!
  13.  
  14.     I think the problem is the following: the files are 'compressed'
  15.     tar files, i.e. they have been tar'ed and compressed;
  16.  
  17.     You better rename these files to .tar.Z. Now you can 'uncompress'
  18.     them, as usual like this:
  19.  
  20.     uncompress foo-file.tar.Z
  21.  
  22.     You get the tar-file, in this very case it'll be foo-file.tar
  23.     I guess I don't have to tell you how to process tar files.
  24.  
  25.     To speed up all this, and to save some space you may have a look
  26.     at it - or even extract the file with this one:
  27.  
  28.     zcat foo-file.tar.Z | tar tfv - | more        # list the archive
  29.     zcat foo-file.tar.Z | tar xfv -         # extract them
  30.  
  31.     If this doesn't work, you may have got garbage files, sorry.
  32.  
  33.     Bonne chance, as Frenchmen'd say :-)
  34.  
  35. bye
  36. -carlo
  37.  
  38.  
  39.