<?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.gz file in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846369#M2881</link>
    <description>or: gunzip -c file.tar.gz | tar xvf -</description>
    <pubDate>Mon, 18 Nov 2002 16:06:14 GMT</pubDate>
    <dc:creator>Vincent Stedema</dc:creator>
    <dc:date>2002-11-18T16:06:14Z</dc:date>
    <item>
      <title>*.tar.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846367#M2879</link>
      <description>Hi , I have a file.tar.gz file&lt;BR /&gt;I want to unpack it on linux&lt;BR /&gt;How do I do it&lt;BR /&gt;&lt;BR /&gt;Please help</description>
      <pubDate>Sat, 16 Nov 2002 15:24:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846367#M2879</guid>
      <dc:creator>Dlomo</dc:creator>
      <dc:date>2002-11-16T15:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: *.tar.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846368#M2880</link>
      <description>Either :&lt;BR /&gt;&lt;BR /&gt;   gunzip file.tar.gz&lt;BR /&gt;   tar xvf file.tar&lt;BR /&gt;&lt;BR /&gt;or :&lt;BR /&gt;&lt;BR /&gt;   tar xzvf file.tar.gz&lt;BR /&gt;&lt;BR /&gt;or :&lt;BR /&gt;&lt;BR /&gt;   zcat file.tar.gz | tar xvf -&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;Kodjo&lt;BR /&gt;</description>
      <pubDate>Sat, 16 Nov 2002 19:08:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846368#M2880</guid>
      <dc:creator>Kodjo Agbenu</dc:creator>
      <dc:date>2002-11-16T19:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: *.tar.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846369#M2881</link>
      <description>or: gunzip -c file.tar.gz | tar xvf -</description>
      <pubDate>Mon, 18 Nov 2002 16:06:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846369#M2881</guid>
      <dc:creator>Vincent Stedema</dc:creator>
      <dc:date>2002-11-18T16:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: *.tar.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846370#M2882</link>
      <description>I prefer Kodjo's first method&lt;BR /&gt;&lt;BR /&gt;gunzip file.tar.gz&lt;BR /&gt;tar -xvf file.tar&lt;BR /&gt;&lt;BR /&gt;just some quick notes on gunzip and tar:&lt;BR /&gt;&lt;BR /&gt;to zip a file type gzip file&lt;BR /&gt;to unzip a file type gunzup file.gz&lt;BR /&gt;&lt;BR /&gt;to create a tar file type:&lt;BR /&gt;tar -cvf tarfilename file1 file2 file3 and so on&lt;BR /&gt;&lt;BR /&gt;to look at the contents of a tar file type:&lt;BR /&gt;tar -tvf tarfilename&lt;BR /&gt;&lt;BR /&gt;to extract a tarfile type:&lt;BR /&gt;tar -xvf tarfilename&lt;BR /&gt;&lt;BR /&gt;hope this helps</description>
      <pubDate>Mon, 02 Dec 2002 12:53:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846370#M2882</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2002-12-02T12:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: *.tar.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846371#M2883</link>
      <description>Just thought I'd toss my $0.02 in here too.&lt;BR /&gt;&lt;BR /&gt;Given that we're using Linux (in this group at least), this means that for the most of us, we'd be using GNU 'tar'.&lt;BR /&gt;&lt;BR /&gt;GNU tar has some lovely little compression plugins already, so you can do fun things like:&lt;BR /&gt;&lt;BR /&gt;  tar ztvf file.tar.gz&lt;BR /&gt;&lt;BR /&gt;to list back files in a G-Zipped Tar file.  You can also create directly into such a tarball by using:&lt;BR /&gt;&lt;BR /&gt;  tar zcf file.tar.gz &lt;FILE list=""&gt;&lt;BR /&gt;&lt;BR /&gt;Now, if you didn't want to use GZip compression, but something like 'bzip', you could use the 'j' flag (unless it was older than tar 1.20 or some such, where it was 'I'.  This was changed for compatability reasons).&lt;BR /&gt;&lt;BR /&gt;Not only that, if you wanted to use your own compression routine, you could just tell it to use your own: &lt;BR /&gt;&lt;BR /&gt;  tar cvf --use-compress-program /my/comperss/program file.tar.mycompress&lt;BR /&gt;&lt;BR /&gt;All is neatly laid out in the manual page of course.&lt;BR /&gt;&lt;BR /&gt;NOTE: All the previous examples in the other threads are also quite valid, and will work.  Just not as efficient as it could be.&lt;/FILE&gt;</description>
      <pubDate>Mon, 02 Dec 2002 21:57:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846371#M2883</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2002-12-02T21:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: *.tar.gz file</title>
      <link>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846372#M2884</link>
      <description>use tar xvfz file.tar.gz</description>
      <pubDate>Tue, 03 Dec 2002 05:31:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/tar-gz-file/m-p/2846372#M2884</guid>
      <dc:creator>Chakravarthi</dc:creator>
      <dc:date>2002-12-03T05:31:20Z</dc:date>
    </item>
  </channel>
</rss>

