Operating System - HP-UX
1820972 Members
4225 Online
109630 Solutions
New Discussion юеВ

pkzip/pkunzip for HP-UX 11.00

 
SOLVED
Go to solution
Preet Dhillon
Advisor

pkzip/pkunzip for HP-UX 11.00

Dear Colleagues,

Can anyone advise me where I can download and install pkzip/pkunzip for HP-UX 11.00 from ?

Many thanks and regards,
Preet
Nothing succeeds like excess
11 REPLIES 11
John Carr_2
Honored Contributor

Re: pkzip/pkunzip for HP-UX 11.00

Hi
there are already utilities available on hpux compress / uncompress ...
I thought pkzip was a windooes product.

cheers
John.
H.Merijn Brand (procura
Honored Contributor
Solution

Re: pkzip/pkunzip for HP-UX 11.00

http://hpux.tn.tudelft.nl/hppd/hpux/Misc/zip-2.3/
http://hpux.tn.tudelft.nl/hppd/hpux/Misc/unzip-5.42/

or from any of the other fine hp software mirrors
Enjoy, Have FUN! H.Merijn
S.K. Chan
Honored Contributor

Re: pkzip/pkunzip for HP-UX 11.00

Dave Chamberlin
Trusted Contributor

Re: pkzip/pkunzip for HP-UX 11.00

have you tried gzip/gunzip - which is already included with hpux?
Helen French
Honored Contributor

Re: pkzip/pkunzip for HP-UX 11.00

Hi Preet:

There is no PKZIP/PKUNZIP utilities in HP-UX. You 've got lot of other commands/utilities in HP, which perform the same functions - gzip, unzip, gunzip, compress etc.

These commands are part of the OS and you can do 'man' for details:

# man gzip

Also check this document too:

http://us-support3.external.hp.com/cki/bin/doc.pl/sid=4601b8710c2f424fad/screen=ckiDisplayDocument?docId=200000059183693

HTH,
Shiju

Life is a promise, fulfill it!
MANOJ SRIVASTAVA
Honored Contributor

Re: pkzip/pkunzip for HP-UX 11.00

Hi Preet


Do a man gzip , there is no pkzip stuuf , however you can use gzip , zcat or tar to do the same .

In case you want to uncompress the files from some other source , but genreally most of them would be in either of the formats available already on HPUX.


Manoj
H.Merijn Brand (procura
Honored Contributor

Re: pkzip/pkunzip for HP-UX 11.00

The links I posted are *exactly* pkzip and pkunzip for unix! Create an archive like

zip -9 -b /tmp -@ archive.zip
and use winzip or any M$ written bloat to look in it. Don't tell the poor user it does not exist.
Enjoy, Have FUN! H.Merijn
H.Merijn Brand (procura
Honored Contributor

Re: pkzip/pkunzip for HP-UX 11.00

Better still, these are *FREE* uncommercial ports.

N/A
Enjoy, Have FUN! H.Merijn
pap
Respected Contributor

Re: pkzip/pkunzip for HP-UX 11.00

Hi There are no PKZIP and PKUNZIP available for HP-UX. The equivelent product which HP-UX supports are gzip,gunzip....etc....there are few more products available. You can also fine it on HP archive and porting site...

http://hpux.cs.utah.edu/

Click on the above link for more compressing software tools.

Thanks,
-pap
"Winners don't do different things , they do things differently"
Preet Dhillon
Advisor

Re: pkzip/pkunzip for HP-UX 11.00

Dear Colleagues,

Many thanks for all your replies. I tried using uncompress, gunzip, zcat to unpack my file (it was an Oracle web portal patch file with a .zip extension) but it reported an error with all these utilities. However I downloaded the unzip utility from the link posted by procura and this works perfectly!

Thanks again people - much appreciated as always.

Best Regards,
Preet :-)
Nothing succeeds like excess
H.Merijn Brand (procura
Honored Contributor

Re: pkzip/pkunzip for HP-UX 11.00

Now fully supported from perl

Subject: ANNOUNCE: Archive::Zip version 1.00
From: Ned Konz
Date: Tue, 23 Apr 2002 08:37:08 -0700
Newsgroups: comp.lang.perl.modules
User-Agent: KNode/0.7.1

Archive::Zip version 1.00 has been released.

From the README:

The Archive::Zip module allows a Perl program to create, manipulate,
read, and write Zip archive files.

Zip archives can be created, or you can read from existing zip files
or strings (using IO::Scalar). Once created, they can be written to
files, streams, or strings.

Members can be added, removed, extracted, replaced, rearranged, and
enumerated. They can also be renamed or have their dates, comments, or
other attributes queried or modified. Their data can be compressed or
uncompressed as needed. Members can be created from members in existing
Zip files, or from existing directories, files, or strings.
Directory trees can be added or extracted simply using the
Archive::Zip::Tree module.

This module uses the Compress::Zlib library to read and write the
compressed streams inside the files. Note that versions of Compress::Zlib
prior to 1.06 truncate data and should not be used.

Compress::Zlib prior to 1.08 caused crashes on some Windows systems.

Examples and helper libraries are given to show how:
* zip files can be read and written to strings
* zip files can be written in chunks to arbitrary functions

CHANGES SINCE VERSION 0.11:

- Added writeScalar.pl and readScalar.pl to show use of IO::Scalar
- Fixed docs
- Fixed bug with EOCD signature on block boundary
- Made it work with IO::Scalar as file handles
- added readFromFileHandle()
- remove guess at seekability for Windows compatibility
- Added several examples:
- examples/calcSizes.pl
How to find out how big a zip file will be before writing it
- examples/readScalar.pl
shows how to use IO::Scalar as the source of a zip read
- examples/unzipAll.pl
uses Archive::Zip::Tree to unzip an entire zip
- examples/writeScalar.pl
shows how to use IO::Scalar as the destination of a zip write
- examples/zipGrep.pl
Searches for text in zip files
- Changed required version of Compress::Zlib to 1.08
- Added detection and repair of zips with added garbage (as caused by
the Sircam worm)
- Added more documentation for FAQ-type questions, though few seem to
actually read the documentation.
- Fixed problem with stat vs lstat
- Changed version number to 1.00 for PHB compatibility

COPYRIGHT:

Copyright (c) 2000-2002 Ned Konz. All rights reserved. This program is free
software; you can redistribute it and/or modify it under the same terms
as Perl itself.

AVAILABILITY:

From CPAN, in directory
http://www.cpan.org/modules/by-authors/id/N/NE/NEDKONZ/
or
ftp://ftp.cpan.org/pub/CPAN/modules/by-authors/id/N/NE/NEDKONZ/
as Archive-Zip-1.00.tar.gz

Enjoy, Have FUN! H.Merijn