<?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: GNU Tar in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766591#M260474</link>
    <description>Thanks for your replies.  I will try them in a short while.  Your replies are very similar to what I'm finding out from other sources. Thanks! I'll reply with what worked.</description>
    <pubDate>Wed, 05 Apr 2006 15:27:34 GMT</pubDate>
    <dc:creator>Regina Mitchell</dc:creator>
    <dc:date>2006-04-05T15:27:34Z</dc:date>
    <item>
      <title>GNU Tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766588#M260471</link>
      <description>I'm trying to install third party software FTPS Wrapper.  I have installed GNU Tar as a required but I am still having problems with the FTP Wrapper install.  Per the Vendor I need to do the following:&lt;BR /&gt;It looks like GNU tar is not the default "tar" in the path. Can you set your path to have gnutar in front of standard tar? If that doesn't work, try editing the secureftp installer and change the order of the PATH variable to reflect GNU tar's loaction first.&lt;BR /&gt;&lt;BR /&gt;How do I do put gnutar in front of standard tar?  OS is HPUX11.i.</description>
      <pubDate>Wed, 05 Apr 2006 14:56:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766588#M260471</guid>
      <dc:creator>Regina Mitchell</dc:creator>
      <dc:date>2006-04-05T14:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: GNU Tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766589#M260472</link>
      <description>Shalom Regina,&lt;BR /&gt;&lt;BR /&gt;You can bypass the PATH changes.&lt;BR /&gt;&lt;BR /&gt;tarpath=$(whence tar)&lt;BR /&gt;mv $tarpath $tarpath.arch&lt;BR /&gt;ls -s &lt;PATH to="" gnu="" tar=""&gt; $tarpath&lt;BR /&gt;&lt;BR /&gt;What I am doing is finding the old tar, renaming it and putting a soft link from what was the old tar to the new tar.&lt;BR /&gt;&lt;BR /&gt;This methodology may break tar scripts.&lt;BR /&gt;&lt;BR /&gt;So&lt;BR /&gt;&lt;BR /&gt;whence tar&lt;BR /&gt;echo $PATH&lt;BR /&gt;re-arrange the PATH variable, usually set in /etc/profile and or .profile to put the gnu tar in front of the old tar.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;/PATH&gt;</description>
      <pubDate>Wed, 05 Apr 2006 15:05:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766589#M260472</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-04-05T15:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: GNU Tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766590#M260473</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;You modify your path statement in either /etc/PATH or in your local .profile so that the gnutar directory is listed before the directory that contains the HPUX tar (usually /bin)&lt;BR /&gt;&lt;BR /&gt;If you are interested here is the link to download the HP wrapper add -in&lt;BR /&gt;&lt;A href="http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=TCPWRAP" target="_blank"&gt;http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=TCPWRAP&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Apr 2006 15:10:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766590#M260473</guid>
      <dc:creator>DCE</dc:creator>
      <dc:date>2006-04-05T15:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: GNU Tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766591#M260474</link>
      <description>Thanks for your replies.  I will try them in a short while.  Your replies are very similar to what I'm finding out from other sources. Thanks! I'll reply with what worked.</description>
      <pubDate>Wed, 05 Apr 2006 15:27:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766591#M260474</guid>
      <dc:creator>Regina Mitchell</dc:creator>
      <dc:date>2006-04-05T15:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: GNU Tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766592#M260475</link>
      <description>I did this in root's .profile:&lt;BR /&gt;&lt;BR /&gt;PATH=/usr/local/bin:$PATH:/sbin:/home/root&lt;BR /&gt;&lt;BR /&gt;/usr/local/bin is where gnu tar is</description>
      <pubDate>Wed, 05 Apr 2006 16:23:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766592#M260475</guid>
      <dc:creator>Regina Mitchell</dc:creator>
      <dc:date>2006-04-05T16:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: GNU Tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766593#M260476</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;Don't forget to export the PATH variable as well............</description>
      <pubDate>Wed, 05 Apr 2006 17:26:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/gnu-tar/m-p/3766593#M260476</guid>
      <dc:creator>DCE</dc:creator>
      <dc:date>2006-04-05T17:26:48Z</dc:date>
    </item>
  </channel>
</rss>

