[comp.binaries.ibm.pc.d] how do I Unzip files????

shunho@wpi.WPI.EDU (Shun Ke Ho) (01/03/91)

I am having trouble unzipping files
Can someone tell me where to get
and how to use the file(s) to
unzip..

w8sdz@vela.acs.oakland.edu (Keith Petersen) (01/03/91)

ALL ABOUT ARCHIVES, LHZS, ZIPS, ZOOS, LIBRARIES, and SQUEEZED FILES

Some of the files in the SIMTEL20 MS/PCDOS Software Libraries have
been transformed by using one or another of the standard public domain
utilities that either SQueezes, LiBRaries, ARChives, LZHs, ZIPs, or
ZOOs files.

This transformation is performed to compress the files to minimize
download time, and/or combine several related files into a single
easily-managed file.  You cannot use or run any of these files without
first transforming them back to their original state.

These processed files are specially named with a file type (the last 3
letters of a file name after the '.') that signifies the transformation.
These are:

            .ARC   for files archived with PKPAK.EXE,
            .LZH   for files archived with LHARC.EXE,
            .ZIP   for files archived with PKZIP.EXE,
            .ZOO   for files archived with ZOO.EXE,
            .LBR   for files libraried with LU.EXE, and
            .?Q?   for squeezed files (middle letter is a Q).


                          ARC FILES

PKPAK is used to create and maintain file archives.  An archive is a
group of files collected together into one file in such a way that the
individual files may be recovered intact.  PKPAK will automatically
compress member files when adding them to the archive, and PKUNPAK
will expand them upon extraction.  For files with the .ARC extension,
you must have a copy of file PD1:<MSDOS.ARC-LBR>PK361.EXE to extract
the component files.  (PK361.EXE is a "self-extracting archive."  When
you run this program, it will produce PKPAK, PKUNPAK and related
documentation).  After you end up with a copy of PKUNPAK you can use
it to extract files.  An example of using PKUNPAK to unpack an ARChive
"FILE.ARC" is:
                     "A>pkunpak file"
You do not need to supply the ARC file type when specifying "file."


                          LZH FILES

LHARC is used to create and maintain file archives.  An archive is a
group of files collected together into one file in such a way that the
individual files may be recovered intact.  LHARC will automatically
compress member files when adding them to the archive, and will expand
them upon extraction.  For files with the .LZH extension, you must
have a copy of file PD1:<MSDOS.ARC-LBR>LH113C.EXE to extract the
component files.  LH113C.EXE is a "self-extracting archive."  When
you run this program, it will produce LHARC and related documentation.
After you end up with a copy of LHARC you can use it to extract files.
An example of using LHARC to unpack an LZH archive "FILE.LZH" is:
                     "A>lharc e file"
You do not need to supply the LZH file type when specifying "file."


                          ZIP FILES

PKZIP is used to create and maintain file archives.  An archive is a
group of files collected together into one file in such a way that the
individual files may be recovered intact.  PKZIP will automatically
compress member files when adding them to the archive, and PKUNZIP
will expand them upon extraction.  For files with the .ZIP extension,
you must have a copy of file PD1:<MSDOS.ZIP>PKZ110EU.EXE to extract the
component files.  (PKZ110EU.EXE is a "self-extracting archive."  When
you run this program, it will produce PKZIP, PKUNZIP and related
documentation).  After you end up with a copy of PKUNZIP you can use
it to extract files.  An example of using PKUNZIP to unpack an archive
"FILE.ZIP" is:
                     "A>pkunzip file"
You do not need to supply the ZIP file type when specifying "file."


                           ZOO FILES

ZOO.EXE is an archiving program that is similar to PKPAK, but
non-compatible.  ZOO can produce archives with long pathnames in them
(directory names as well as the file name) and it can store comments
about each file.  If you want to take apart a ZOO archive, you will
need a copy of ZOO.EXE.  Since it is a program in development, it's
hard to say what its file name will be when you read this, but
searching for ZOO*.* should turn up the correct file.  When this
article was written the current version of ZOO was ZOO201.EXE, which
may be found in the PD1:<MSDOS.ZOO> directory.  The zoo syntax for
file extraction is:
                    "A>zoo e file"
You do not need to supply the ZOO file type when specifying "file."


                           LBR FILES

LU and its relatives (LUP, LUU, LUE, LUT, LU86, LAR etc.), maintain
libraries of files.  Most LU-type programs do not perform any
compression.  Because of this, most people will squeeze files before
adding them to a library if they want to save space.  If you want to
remove the component files from an .LBR file, you should have a copy
of file PD1:<MSDOS.STARTER>LUE220.COM.  This will break up the library
into its component parts, and optionally unsqueeze any .?Q? files at
the same time.  The syntax for LUE would be:
                      "A>lue220 file"
where file was really FILE.LBR.

LUU.COM can be used to create a .LBR file.


                       SQUEEZED FILES

NUSQ.COM is used to unsqueeze, or expand files that have a "Q" as the
middle letter of the file type.  Such files have been squeezed, or
compressed with SQPC.COM or something similar.  These programs use
Huffman Encoding to reduce the size of the target file.  Depending on
the distribution of data in a file it can be reduced in size by 5% to
60% by squeezing it. If you download a file with a file type
indicating that it is squeezed, you will need file
PD1:<MSDOS.STARTER>NUSQ110.COM to expand it before you can use it.
The syntax to unsqueeze a file would be:
                   "A>nusq110 file.tqt"
where file.tqt was the file you wanted to unsqueeze.  You must supply
the full file name and type.


                       MORE INFORMATION

For more information on ARChives, see the documentation for
PKPAK/PKUNPAK which is included in the PK361.EXE file.  For more
information on LHZ archives, see the documentation for LHARC which is
included in the LH113C.EXE file.  For more information on ZIP
archives, see the documentation for PKZIP/PKUNZUP which is included in
the PKZ110EU.EXE file.  For ZOO archives, see Rahul Dhesi's excellent
documentation included in ZOO201.EXE and UGUIDE.ZOO.  The doc files
included with the various LU utilities will explain .LBR's, and
LUDEF5.DOC explains the layout of these files in detail.

                     -- Keith Petersen <w8sdz@WSMR-SIMTEL20.Army.Mil>

ts@uwasa.fi (Timo Salmi) (01/04/91)

In article <1991Jan2.190933.15379@wpi.WPI.EDU> shunho@wpi.WPI.EDU (Shun Ke Ho) writes:
>
>
>I am having trouble unzipping files
>Can someone tell me where to get
>and how to use the file(s) to
>unzip..

An extract from /pc/ts/tsfaq15.arc:

13. *****
 Q1: What is this file with this .zip (.arc, .arj, .lzh, .pak, .sdn,
.zoo) extension? What am I supposed to do to it?
 Q2: I can't run this file I got with a .zip extension.

 A: This is a total beginner's question, but never mind. One is
supposed to start from somewhere. These files with a .zip (.arc,
.lzh, .pak. .zoo) are compressed collections of files. You are not
supposed to run a compressed entity (often also called an archive).
You are supposed to unpack it first to extract the files from within
the package. For this you need the relevant (un)packing program. You
can find them in the /pc/pd2 and /pc/arcers directories at the
anonymous ftp site uwasa.fi, or at practically any fine bulletin
board. (After you have gotten them, they are very easy to process,
since most often these utilities are self-extracting). At the time
of writing this we have eg
  arc602.exe      SEA's .arc packing/unpacking system.
  arj015a.zip     Robert Kung's .arj archiver beta test version
  lh114b.exe      Dense compression from Japan, (hacked?) version
  lh113de.exe     Latest attested version for .lzh compression
  pak251.exe      NoGate (un)packing for pak, arc, sdn, zip, files
  pk361.exe       This packed and unpacked .arc files fast
  pkz110eu.exe    PKZIP/PKUNZIP "Euroversion" with no encryption
  zoo201.exe      Zoo packing/unpacking facility from Rahul Dhesi
Once you are well familiar with unpacking and packing, there is an
excellent shell for running these utilities. It is called SHEZ and
is in version /pc/pd2/shez59.zip at the time I wrote this item.
   Another advanced feature once you get the hang of this, is that
(most of) these are available in the Unix environment, as well. See
the /unix/ts directory at uwasa.fi for the Unix versions.

...................................................................
Prof. Timo Salmi        (Moderating at anon. ftp site 128.214.12.3)
School of Business Studies, University of Vaasa, SF-65101, Finland
Internet: ts@chyde.uwasa.fi Funet: gado::salmi Bitnet: salmi@finfun

ECSGRT@lure.latrobe.edu.au (Geoffrey Tobin, Electronic Engineering) (02/09/91)

In article <1991Jan3.160028.23114@uwasa.fi>, ts@uwasa.fi (Timo Salmi) writes:
> In article <1991Jan2.190933.15379@wpi.WPI.EDU> shunho@wpi.WPI.EDU (Shun Ke Ho) writes:
>>
>>
>>I am having trouble unzipping files
>>Can someone tell me where to get
>>and how to use the file(s) to
>>unzip..
> 
> An extract from /pc/ts/tsfaq15.arc:
> 
> 13. *****
>  Q1: What is this file with this .zip (.arc, .arj, .lzh, .pak, .sdn,
> ..zoo) extension? What am I supposed to do to it?
>  Q2: I can't run this file I got with a .zip extension.
> 
>  A: This is a total beginner's question, but never mind. One is
> supposed to start from somewhere. These files with a .zip (.arc,
> ..lzh, .pak. .zoo) are compressed collections of files. You are not
> supposed to run a compressed entity (often also called an archive).
> You are supposed to unpack it first to extract the files from within
> the package. For this you need the relevant (un)packing program. You
> can find them in the /pc/pd2 and /pc/arcers directories at the
> anonymous ftp site uwasa.fi, or at practically any fine bulletin
> board. (After you have gotten them, they are very easy to process,
> since most often these utilities are self-extracting). At the time
> of writing this we have eg
>   arc602.exe      SEA's .arc packing/unpacking system.
>   arj015a.zip     Robert Kung's .arj archiver beta test version
>   lh114b.exe      Dense compression from Japan, (hacked?) version
>   lh113de.exe     Latest attested version for .lzh compression
>   pak251.exe      NoGate (un)packing for pak, arc, sdn, zip, files
>   pk361.exe       This packed and unpacked .arc files fast
>   pkz110eu.exe    PKZIP/PKUNZIP "Euroversion" with no encryption
>   zoo201.exe      Zoo packing/unpacking facility from Rahul Dhesi
> Once you are well familiar with unpacking and packing, there is an
> excellent shell for running these utilities. It is called SHEZ and
> is in version /pc/pd2/shez59.zip at the time I wrote this item.
>    Another advanced feature once you get the hang of this, is that
> (most of) these are available in the Unix environment, as well. See
> the /unix/ts directory at uwasa.fi for the Unix versions.
> 
> ....................................................................
> Prof. Timo Salmi        (Moderating at anon. ftp site 128.214.12.3)
> School of Business Studies, University of Vaasa, SF-65101, Finland
> Internet: ts@chyde.uwasa.fi Funet: gado::salmi Bitnet: salmi@finfun

This is all very well, but some of these (un)packing programs have
scary copyright notices on them!  So what happens when the (gasp!)
SOFTWARE POLICE catch us Uni-folk with these little beauties in our
little red hands?  ):-(  (Don't laugh!  Australia has such police.)

Yours sincerely,
Frightfully alarmed.