<?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: TAR command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536749#M652103</link>
    <description>make a tar (cvf) and then zip it with gzip.&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;Kapil+</description>
    <pubDate>Thu, 19 Nov 2009 11:58:29 GMT</pubDate>
    <dc:creator>Kapil Jha</dc:creator>
    <dc:date>2009-11-19T11:58:29Z</dc:date>
    <item>
      <title>TAR command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536746#M652100</link>
      <description>Hello Everyone,&lt;BR /&gt;&lt;BR /&gt;when i am trying to&lt;BR /&gt;&lt;BR /&gt;$ tar -czvf /backup/aaa/cb.tar.gz /home/oracle/scripts&lt;BR /&gt;tar: z: unknown option&lt;BR /&gt;tar: usage  tar [-]{txruc}[eONvVwAfblhm{op}][0-7[lmh]] [tapefile] [blocksize] [[-C directory] file] ...&lt;BR /&gt;&lt;BR /&gt;what is the error....&lt;BR /&gt;&lt;BR /&gt;Thanks,</description>
      <pubDate>Thu, 19 Nov 2009 11:40:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536746#M652100</guid>
      <dc:creator>ram_reddyprasad</dc:creator>
      <dc:date>2009-11-19T11:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: TAR command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536747#M652101</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Your tar version does not support the uncompress/unzip function.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Gnu/tar-1.22/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Gnu/tar-1.22/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Thu, 19 Nov 2009 11:44:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536747#M652101</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2009-11-19T11:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: TAR command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536748#M652102</link>
      <description>Thanks Robert-Jan&lt;BR /&gt;&lt;BR /&gt;at prasent which command i need to follow to take the backup in zip ....&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Ram.</description>
      <pubDate>Thu, 19 Nov 2009 11:55:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536748#M652102</guid>
      <dc:creator>ram_reddyprasad</dc:creator>
      <dc:date>2009-11-19T11:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: TAR command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536749#M652103</link>
      <description>make a tar (cvf) and then zip it with gzip.&lt;BR /&gt;&lt;BR /&gt;BR,&lt;BR /&gt;Kapil+</description>
      <pubDate>Thu, 19 Nov 2009 11:58:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536749#M652103</guid>
      <dc:creator>Kapil Jha</dc:creator>
      <dc:date>2009-11-19T11:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: TAR command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536750#M652104</link>
      <description>&lt;!--!*#--&gt;&amp;gt; make a tar (cvf) and then zip it with gzip.&lt;BR /&gt;&lt;BR /&gt;Less crude would be something like:&lt;BR /&gt;&lt;BR /&gt;tar cvf - /home/oracle/scripts | \&lt;BR /&gt; gzip &amp;gt; /backup/aaa/cb.tar.gz&lt;BR /&gt;&lt;BR /&gt;which, I believe, is essentially what GNU&lt;BR /&gt;"tar" does for "-z".  Works with bzip2, too,&lt;BR /&gt;or any other filter-like compression program,&lt;BR /&gt;whether your "tar" program knows about it or&lt;BR /&gt;not.&lt;BR /&gt;&lt;BR /&gt;Sometimes it pays to know how to do things&lt;BR /&gt;the old-fashioned way (before "-z" existed).</description>
      <pubDate>Thu, 19 Nov 2009 12:14:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536750#M652104</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-11-19T12:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: TAR command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536751#M652105</link>
      <description>sure you should know how it works, and what the alternatives are, just in case.&lt;BR /&gt;&lt;BR /&gt;but, common, we admins are lazy bastards, if i can replace a 20 char command with a single letter, i'm happy ;)</description>
      <pubDate>Fri, 20 Nov 2009 08:38:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536751#M652105</guid>
      <dc:creator>dirk dierickx</dc:creator>
      <dc:date>2009-11-20T08:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: TAR command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536752#M652106</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] lazy [...]&lt;BR /&gt;&lt;BR /&gt;I'm so lazy (or stupid) that I can barely&lt;BR /&gt;remember one way to do anything, so I try to&lt;BR /&gt;remember the one way which will work&lt;BR /&gt;anywhere.</description>
      <pubDate>Fri, 20 Nov 2009 11:32:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536752#M652106</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-11-20T11:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: TAR command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536753#M652107</link>
      <description>i'm even more lazy, i run everything on one machine! so i don't have to learn anything else :P</description>
      <pubDate>Mon, 23 Nov 2009 09:49:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-command/m-p/4536753#M652107</guid>
      <dc:creator>dirk dierickx</dc:creator>
      <dc:date>2009-11-23T09:49:00Z</dc:date>
    </item>
  </channel>
</rss>

