<?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: use of tar to extract a file in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241178#M173693</link>
    <description>Thanks for the help all. I redid the ftp, ensuring that I used binary. The tar -xf worked this time</description>
    <pubDate>Tue, 06 Apr 2004 10:43:24 GMT</pubDate>
    <dc:creator>Ron Bromwell</dc:creator>
    <dc:date>2004-04-06T10:43:24Z</dc:date>
    <item>
      <title>use of tar to extract a file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241168#M173683</link>
      <description>I have an upgrade for my database in a tar file that I downloaded to the directory on my system. I can't seem to get the file extracted using tar with the x option. Any ideas on what I may be doing wrong?</description>
      <pubDate>Tue, 06 Apr 2004 08:38:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241168#M173683</guid>
      <dc:creator>Ron Bromwell</dc:creator>
      <dc:date>2004-04-06T08:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: use of tar to extract a file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241169#M173684</link>
      <description>&lt;BR /&gt;Hi&lt;BR /&gt;&lt;BR /&gt;command would usually be when in directory of file&lt;BR /&gt;&lt;BR /&gt;tar -xf ./myfilename</description>
      <pubDate>Tue, 06 Apr 2004 08:42:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241169#M173684</guid>
      <dc:creator>John Carr_2</dc:creator>
      <dc:date>2004-04-06T08:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: use of tar to extract a file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241170#M173685</link>
      <description>You can use file on the file to check that it's a normal tar archive ; i.e. not gzipped for instance ...&lt;BR /&gt;&lt;BR /&gt;tar -tvf shall give you the list of file in the archive.&lt;BR /&gt;&lt;BR /&gt;Cheers</description>
      <pubDate>Tue, 06 Apr 2004 08:44:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241170#M173685</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-04-06T08:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: use of tar to extract a file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241171#M173686</link>
      <description>depending on how the tar was made. &lt;BR /&gt;&lt;BR /&gt;tar xvf tarfile fullpath/file&lt;BR /&gt;&lt;BR /&gt;should extract it for you.&lt;BR /&gt;&lt;BR /&gt;if your not sure the path&lt;BR /&gt;&lt;BR /&gt;tar tvf tarfile will show you. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Apr 2004 08:49:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241171#M173686</guid>
      <dc:creator>Marvin Strong</dc:creator>
      <dc:date>2004-04-06T08:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: use of tar to extract a file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241172#M173687</link>
      <description>I keep getting a directory checksum error&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Apr 2004 08:56:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241172#M173687</guid>
      <dc:creator>Ron Bromwell</dc:creator>
      <dc:date>2004-04-06T08:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: use of tar to extract a file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241173#M173688</link>
      <description>This file may not be tar, but compressed tar.  I have many times had Netscape or IE remove the second extension from "file.tar.gz", and rename it tar.&lt;BR /&gt;&lt;BR /&gt;First, type &lt;BR /&gt;&lt;BR /&gt;% file myfile.tar&lt;BR /&gt;&lt;BR /&gt;If this is gzipped tar, it will tell you the file is awk program text.  For compressed tar, it will tell you that it is 16 bit compressed.  If it is tar, it will tell you it is tar.&lt;BR /&gt;&lt;BR /&gt;Once you know what the file really is, it should be easy to fix.  Simply rename the file accordingly.&lt;BR /&gt;&lt;BR /&gt;It is always possible that the file is plain old corrupt.  If this was an FTP binary file that came down in ASCII mode instead of binary, then the file is broken and you will need to re-download in the right mode.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Shannon&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Apr 2004 09:17:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241173#M173688</guid>
      <dc:creator>Shannon Petry</dc:creator>
      <dc:date>2004-04-06T09:17:23Z</dc:date>
    </item>
    <item>
      <title>Re: use of tar to extract a file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241174#M173689</link>
      <description>Shannon,&lt;BR /&gt;I got the following error when I issued &lt;BR /&gt;% file myfile.tar&lt;BR /&gt;&lt;BR /&gt;cannot open for reading</description>
      <pubDate>Tue, 06 Apr 2004 10:27:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241174#M173689</guid>
      <dc:creator>Ron Bromwell</dc:creator>
      <dc:date>2004-04-06T10:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: use of tar to extract a file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241175#M173690</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Did you use a ftp binary mode when you downloaded the upgrade file.&lt;BR /&gt;&lt;BR /&gt;Robert-Jan</description>
      <pubDate>Tue, 06 Apr 2004 10:29:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241175#M173690</guid>
      <dc:creator>Robert-Jan Goossens</dc:creator>
      <dc:date>2004-04-06T10:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: use of tar to extract a file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241176#M173691</link>
      <description>Are the perms OK on file? Should have read access to you.&lt;BR /&gt;&lt;BR /&gt;Anil</description>
      <pubDate>Tue, 06 Apr 2004 10:32:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241176#M173691</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2004-04-06T10:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: use of tar to extract a file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241177#M173692</link>
      <description>It comes back as a tar file. must be something wrong withthe file I downloaded. I'll have to re-download it.</description>
      <pubDate>Tue, 06 Apr 2004 10:34:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241177#M173692</guid>
      <dc:creator>Ron Bromwell</dc:creator>
      <dc:date>2004-04-06T10:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: use of tar to extract a file</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241178#M173693</link>
      <description>Thanks for the help all. I redid the ftp, ensuring that I used binary. The tar -xf worked this time</description>
      <pubDate>Tue, 06 Apr 2004 10:43:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/use-of-tar-to-extract-a-file/m-p/3241178#M173693</guid>
      <dc:creator>Ron Bromwell</dc:creator>
      <dc:date>2004-04-06T10:43:24Z</dc:date>
    </item>
  </channel>
</rss>

