<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: zip vs gzip in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845531#M92103</link>
    <description>Jean-Louise,&lt;BR /&gt;&lt;BR /&gt;I'm executing zip on a HPUX 10.20, which I placed it on /usr/local/bin/. The zip version which I'm running is zip 2.1 &lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
    <pubDate>Fri, 15 Nov 2002 08:29:36 GMT</pubDate>
    <dc:creator>Chern Jian Leaw</dc:creator>
    <dc:date>2002-11-15T08:29:36Z</dc:date>
    <item>
      <title>zip vs gzip</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845528#M92100</link>
      <description>HI,&lt;BR /&gt;&lt;BR /&gt;I tried doing a zip on a .tar file:&lt;BR /&gt;#zip -v file.tar &lt;BR /&gt;  zip warning: missing end signature--probably not a zip file(did you remember to use binary mode when you transferred it?)&lt;BR /&gt;&lt;BR /&gt;#zip -F file.tar &lt;BR /&gt;zip warning: file.tar would be truncated.&lt;BR /&gt;Retry with option -qF to truncate, -FF to attempt full recovery. &lt;BR /&gt;&lt;BR /&gt;zip error: Zip file structure invalid(file.tar)&lt;BR /&gt;&lt;BR /&gt;Could someone show me how I could apply zip on a .tar file? &lt;BR /&gt;&lt;BR /&gt;I'm able to do a gzip on a .tar file, but I'm having troubles with zip.&lt;BR /&gt;&lt;BR /&gt;What are the differences between gzip and zip?&lt;BR /&gt;Can zip handle .tar files? What are the limitations of zip and gzip?&lt;BR /&gt;&lt;BR /&gt;Could someone kindly help me out.&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Nov 2002 07:55:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845528#M92100</guid>
      <dc:creator>Chern Jian Leaw</dc:creator>
      <dc:date>2002-11-15T07:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: zip vs gzip</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845529#M92101</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;What is zip on hp-ux ? I only know gzip. The message you give seems to be an uncompression message rather than a compression message. Where did you find it ?&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Fri, 15 Nov 2002 08:10:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845529#M92101</guid>
      <dc:creator>Jean-Louis Phelix</dc:creator>
      <dc:date>2002-11-15T08:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: zip vs gzip</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845530#M92102</link>
      <description>&lt;BR /&gt;Try; &lt;BR /&gt;cat file.tar | zip &amp;gt; file.zip&lt;BR /&gt;&lt;BR /&gt;zip isnt commonly used. HP's uses compress, the newew gzip (better compression) and the even newer bzip2 (even better compression). gzip is a bit more robust - you can gzip anything (gzip file, or cat file | gzip &amp;gt; newfile, or gunzip file) but zip is really for windows/PC's. Winzip on windows/PC's understands tar files or gzip files perfectly so there is really no need to use zip. We dont.&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Nov 2002 08:11:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845530#M92102</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2002-11-15T08:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: zip vs gzip</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845531#M92103</link>
      <description>Jean-Louise,&lt;BR /&gt;&lt;BR /&gt;I'm executing zip on a HPUX 10.20, which I placed it on /usr/local/bin/. The zip version which I'm running is zip 2.1 &lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Nov 2002 08:29:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845531#M92103</guid>
      <dc:creator>Chern Jian Leaw</dc:creator>
      <dc:date>2002-11-15T08:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: zip vs gzip</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845532#M92104</link>
      <description>#tar cf - . | zip test -&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This should create a zip file called test&lt;BR /&gt;&lt;BR /&gt;ALso you can try doing a&lt;BR /&gt;&lt;BR /&gt;#zip test1 file.tar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This should create a test1.zip &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Revert</description>
      <pubDate>Fri, 15 Nov 2002 09:09:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845532#M92104</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2002-11-15T09:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: zip vs gzip</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845533#M92105</link>
      <description>you probably got zip from &lt;A href="http://hpux.cs.utah.edu/" target="_blank"&gt;http://hpux.cs.utah.edu/&lt;/A&gt; as it is not standard unix.&lt;BR /&gt;I recommend gzip as winders will be able to decompress it. You can also get better compression with &lt;BR /&gt;gzip -9 file&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
      <pubDate>Fri, 15 Nov 2002 09:16:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845533#M92105</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2002-11-15T09:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: zip vs gzip</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845534#M92106</link>
      <description>Forget both zip and gzip. Use bzip2. For 10.20 binaries are available on &lt;A href="https://www.beepz.com/personal/merijn" target="_blank"&gt;https://www.beepz.com/personal/merijn&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;For tar archives with source files, bzip2 compresses 30% better than gzip -9&lt;BR /&gt;&lt;BR /&gt;Original URL's:&lt;BR /&gt;&lt;BR /&gt;bzip2: &lt;A href="http://sources.redhat.com/bzip2/" target="_blank"&gt;http://sources.redhat.com/bzip2/&lt;/A&gt;&lt;BR /&gt;gzip: &lt;A href="ftp://download.xs4all.nl/pub/mirror/gnu/gzip/" target="_blank"&gt;ftp://download.xs4all.nl/pub/mirror/gnu/gzip/&lt;/A&gt;&lt;BR /&gt;zip: &lt;A href="http://www.info-zip.org/pub/infozip/" target="_blank"&gt;http://www.info-zip.org/pub/infozip/&lt;/A&gt;&lt;BR /&gt;unzip: &lt;A href="http://www.info-zip.org/pub/infozip/" target="_blank"&gt;http://www.info-zip.org/pub/infozip/&lt;/A&gt;&lt;BR /&gt;zlib: &lt;A href="http://www.gzip.org/zlib/" target="_blank"&gt;http://www.gzip.org/zlib/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;.tar.gz .tar.bz2 .tar.Z .zip .tgz .tbz are all recognized by powerarchiver on the PC (&lt;A href="http://www.powerarchiver.com)" target="_blank"&gt;http://www.powerarchiver.com)&lt;/A&gt;</description>
      <pubDate>Fri, 15 Nov 2002 09:27:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845534#M92106</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-11-15T09:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: zip vs gzip</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845535#M92107</link>
      <description>Is there a performance issue when using gzip over zip for compressing large files?&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Nov 2002 10:07:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845535#M92107</guid>
      <dc:creator>Chern Jian Leaw</dc:creator>
      <dc:date>2002-11-15T10:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: zip vs gzip</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845536#M92108</link>
      <description>Procura,&lt;BR /&gt;Thanks for those useful links. But if I'm not mistaken, zlib uses the gzip compression algorithm, hence, does zlib has better compression rate compared to gzip for large filesystems i.e &amp;gt; 2GB?&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Nov 2002 10:32:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845536#M92108</guid>
      <dc:creator>Chern Jian Leaw</dc:creator>
      <dc:date>2002-11-15T10:32:09Z</dc:date>
    </item>
    <item>
      <title>Re: zip vs gzip</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845537#M92109</link>
      <description>Thanks for those useful links. But if I'm not mistaken, zlib uses the gzip compression algorithm, hence, does zlib has better compression rate compared to gzip for large filesystems i.e &amp;gt; 2GB? &lt;BR /&gt;&lt;BR /&gt;The other way round. gzip uses zlib :)&lt;BR /&gt;zlib has been updated not so long ago because of some security issues&lt;BR /&gt;&lt;BR /&gt;bzip has a much better compression algorithm, in any case for non-binary files&lt;BR /&gt;&lt;BR /&gt;AFAIK zip/unzip is not actively maintained, and will thus not have the highest compression rate&lt;BR /&gt;&lt;BR /&gt;I'm open for corrections regarding this info :)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;[points]</description>
      <pubDate>Fri, 15 Nov 2002 11:06:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/zip-vs-gzip/m-p/2845537#M92109</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-11-15T11:06:16Z</dc:date>
    </item>
  </channel>
</rss>

