<?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: 'pax' help in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751959#M70435</link>
    <description>are you able to list the file contents with tar -tvf.&lt;BR /&gt;&lt;BR /&gt;try this &lt;BR /&gt;pax -rv -s '/^\///' &amp;lt; your_tar_file.&lt;BR /&gt;&lt;BR /&gt;This will extract everything in current directory.&lt;BR /&gt;&lt;BR /&gt;If this does not work try&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/rmt/0m of=/your directory&lt;BR /&gt;this will copy tar archeive from tape to a directory. Check permissions. if required change them and try the above pax command again.&lt;BR /&gt;&lt;BR /&gt;I am assuming that you are using root id for all this.&lt;BR /&gt;&lt;BR /&gt;Regards,</description>
    <pubDate>Tue, 25 Jun 2002 17:09:13 GMT</pubDate>
    <dc:creator>RAC_1</dc:creator>
    <dc:date>2002-06-25T17:09:13Z</dc:date>
    <item>
      <title>'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751958#M70434</link>
      <description>&lt;BR /&gt;This is a continuation of  &lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x35b73a7b3682d611abdb0090277a778c,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x35b73a7b3682d611abdb0090277a778c,00.html&lt;/A&gt; wherein I'm looking for help extracting a tar archive that was made with absolute pathnames into a relative disk structure. I'm starting a new message because it's my experience that people don't read/help when you've marked a the 'magical solution' already. :-)&lt;BR /&gt;&lt;BR /&gt;Thank you, Mr. Ferguson, for pointing out this interesting tool. 'pax' looks quite useful.&lt;BR /&gt;&lt;BR /&gt;Still having some glitches, though, and hoping that someone might have seen these and can tell me how they got around them. Included below is the command line and complete output:&lt;BR /&gt;&lt;BR /&gt;--------------------------------&lt;BR /&gt;# pax -r -p -s ',//,/rnew/,' -t /dev/rmt/0m -v&lt;BR /&gt;USTAR format archive&lt;BR /&gt;pax: /rnew/ : Not owner&lt;BR /&gt;/rnew/&lt;BR /&gt;/rnew/.x11startlog&lt;BR /&gt;/rnew/hp-ux&lt;BR /&gt;pax: /dev/rmt/0m : This doesn't look like a tar archive&lt;BR /&gt;pax: /dev/rmt/0m : Skipping to next file...&lt;BR /&gt;/rnew/acse.hsd/bin/acse_halt&lt;BR /&gt;pax: /dev/rmt/0m : This doesn't look like a tar archive&lt;BR /&gt;pax: /dev/rmt/0m : Skipping to next file...&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;--------------------------------&lt;BR /&gt;&lt;BR /&gt;It seems to have worked on exactly three files, and completely ignored the other 3000 or so. I'm not having any luck finding out what the 'this doesn't look like a tar archive' message means.&lt;BR /&gt;&lt;BR /&gt;Anyone have any experience with this?&lt;BR /&gt;</description>
      <pubDate>Tue, 25 Jun 2002 17:04:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751958#M70434</guid>
      <dc:creator>Shane Travis</dc:creator>
      <dc:date>2002-06-25T17:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751959#M70435</link>
      <description>are you able to list the file contents with tar -tvf.&lt;BR /&gt;&lt;BR /&gt;try this &lt;BR /&gt;pax -rv -s '/^\///' &amp;lt; your_tar_file.&lt;BR /&gt;&lt;BR /&gt;This will extract everything in current directory.&lt;BR /&gt;&lt;BR /&gt;If this does not work try&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/rmt/0m of=/your directory&lt;BR /&gt;this will copy tar archeive from tape to a directory. Check permissions. if required change them and try the above pax command again.&lt;BR /&gt;&lt;BR /&gt;I am assuming that you are using root id for all this.&lt;BR /&gt;&lt;BR /&gt;Regards,</description>
      <pubDate>Tue, 25 Jun 2002 17:09:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751959#M70435</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2002-06-25T17:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751960#M70436</link>
      <description>Hi Tim:&lt;BR /&gt;&lt;BR /&gt;A long shot, but seems like worth the question.  The Technical Knowledge Base has a document (#RCMEMKBRC00004081) that indicate(d) that tar archives created with filenames with extended ASCII characters in them (beyond ASCII 127) cannot be properly read by pax.&lt;BR /&gt;&lt;BR /&gt;You are seeing:&lt;BR /&gt;&lt;BR /&gt;pax: This doesn't look like a tar archive&lt;BR /&gt;pax: tar.out : Skipping to next file...&lt;BR /&gt;&lt;BR /&gt;The document notes this error if you simply do:&lt;BR /&gt;&lt;BR /&gt;# pax -vf tar.out&lt;BR /&gt;&lt;BR /&gt;Does this fit?&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Tue, 25 Jun 2002 17:57:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751960#M70436</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2002-06-25T17:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751961#M70437</link>
      <description>&amp;gt; are you able to list the file contents&lt;BR /&gt;&amp;gt; with tar -tvf. &lt;BR /&gt;&lt;BR /&gt;Yes. I get a complete listing of the tar on the DAT drive.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; try this:&lt;BR /&gt;&amp;gt; pax -rv -s '/^\///' &amp;lt; your_tar_file. &lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; This will extract everything in current&lt;BR /&gt;&amp;gt; directory. &lt;BR /&gt;&lt;BR /&gt;Alright... not quite parsing this. You're suggesting that I use my tar file as an input to pax? &lt;BR /&gt;&lt;BR /&gt;And, re-writing the substitution string to use % as the delimiter instead of slashes... you're recommending '%^/%%' -- right?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; If this does not work try &lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; dd if=/dev/rmt/0m of=/your directory&lt;BR /&gt;&lt;BR /&gt;Another fine idea. Tried it, got this:&lt;BR /&gt;&lt;BR /&gt;# dd if=/dev/rmt/0m of=/rnew/backup.tar&lt;BR /&gt;(long wait)&lt;BR /&gt;dd read error: I/O error&lt;BR /&gt;40653+0 records in&lt;BR /&gt;40653+0 records out&lt;BR /&gt;# pwd&lt;BR /&gt;/rnew&lt;BR /&gt;# tar -tvf backup.tar&lt;BR /&gt;rwxr-xr-x   0/0      0 Dec  7 15:33 1998 //&lt;BR /&gt;directory checksum error                    &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&amp;gt; I am assuming that you are using root id for&lt;BR /&gt;&amp;gt; all this. &lt;BR /&gt;&lt;BR /&gt;One of those things it never hurts to ask... but yes I am. Sorry, I _wish_ it could be that easy.&lt;BR /&gt;&lt;BR /&gt;I appreciate the suggestions. Any further feedback also appreciated.</description>
      <pubDate>Tue, 25 Jun 2002 18:51:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751961#M70437</guid>
      <dc:creator>Shane Travis</dc:creator>
      <dc:date>2002-06-25T18:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751962#M70438</link>
      <description>&amp;gt; [...] tar archives created with filenames&lt;BR /&gt;&amp;gt; with extended ASCII characters in them&lt;BR /&gt;&amp;gt; (beyond ASCII 127) cannot be properly read&lt;BR /&gt;&amp;gt; by pax. &lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; Does this fit? &lt;BR /&gt;&lt;BR /&gt;Gyah. That'd be all I need.&lt;BR /&gt;&lt;BR /&gt;Honestly, I cannot think of any non-ASCII characters that would have gone into this tarball. This is a backup of the root directory and the development code (all of which is written in plain ol' English), so unless there's something funky down in the languages section of HP-UX, we _should_ be fine in that regard. Always the possibility of some invisible control character somewhere though, I suppose.&lt;BR /&gt;&lt;BR /&gt;Thanks for the thought; sounds like I'm just plain SOL. It's really weird that it expanded picked that one file properly out of the middle of everything else, though...</description>
      <pubDate>Tue, 25 Jun 2002 18:56:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751962#M70438</guid>
      <dc:creator>Shane Travis</dc:creator>
      <dc:date>2002-06-25T18:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751963#M70439</link>
      <description>Just cut and paste following command and give the output. Replace your_tar_file with your actual tar file.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;pax -rv -s '/^\///' &amp;lt; your_tar_file.</description>
      <pubDate>Tue, 25 Jun 2002 19:01:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751963#M70439</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2002-06-25T19:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751964#M70440</link>
      <description># pax -rv -s '/^\///' &amp;lt; /dev/rmt/0m&lt;BR /&gt;USTAR format archive&lt;BR /&gt;/&lt;BR /&gt;pax: - : This doesn't look like a tar archive&lt;BR /&gt;pax: - : Skipping to next file...&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;So it looks like I'm backto the same problem as I initially posted about, and not much of a solution in sight. Thanks a lot for the ideas, though.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 25 Jun 2002 20:02:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751964#M70440</guid>
      <dc:creator>Shane Travis</dc:creator>
      <dc:date>2002-06-25T20:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751965#M70441</link>
      <description>Your original command&lt;BR /&gt;&lt;BR /&gt;pax -r -p -s ',//,/rnew/,' -t /dev/rmt/0m -v &lt;BR /&gt;&lt;BR /&gt;is wrong:&lt;BR /&gt;&lt;BR /&gt;You specify "-p", but "-p" should have an argument, but you do not specify one.&lt;BR /&gt;&lt;BR /&gt;Also you seem to think that "-t" specifies a tape device, but it means something completely different.&lt;BR /&gt;&lt;BR /&gt;As far as I can tell, you effectively need the third example from the EXAMPLES section of the pax(1) manual page. That example is:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; To read the archive a.pax, with all files rooted in the directory /usr&lt;BR /&gt;&amp;gt; in the archive extracted relative to the current directory, enter:&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; pax -r -s ',//*usr//*,,' -f a.pax&lt;BR /&gt;&lt;BR /&gt;If I understand your question correctly, you should change this example to:&lt;BR /&gt;&lt;BR /&gt;pax -r -s ',//*rnew//*,,' -f /dev/rmt/0m &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Jun 2002 12:46:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751965#M70441</guid>
      <dc:creator>Frank Slootweg</dc:creator>
      <dc:date>2002-06-26T12:46:24Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751966#M70442</link>
      <description>&amp;gt; Your original command &lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; pax -r -p -s ',//,/rnew/,' -t /dev/rmt/0m -v &lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; is wrong: &lt;BR /&gt;&lt;BR /&gt;Perhaps for your version of HP-UX, but in the post I pointed to (probably should have reiterated that fact here) I'm dealing with a much older version of HP-UX... v8.0, to be exact.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; You specify "-p", but "-p" should have an&lt;BR /&gt;&amp;gt; argument, but you do not specify one. &lt;BR /&gt;&lt;BR /&gt;-p             Preserve access time of the input files after they have been copied.&lt;BR /&gt;&lt;BR /&gt;I see from an 11.0 machine that now you can preserve different things, so you need a string.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Also you seem to think that "-t" specifies a&lt;BR /&gt;&amp;gt; tape device, but it means something&lt;BR /&gt;&amp;gt; completely different. &lt;BR /&gt;&lt;BR /&gt;-t device      device is an implementation-defined identifier that names the input or output archive device, overriding the default of standard input for -r and standard output for -w.&lt;BR /&gt;&lt;BR /&gt;... VERY different from the 11.0 version of pax, in which this argument has something to do with access times.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; If I understand your question correctly, you&lt;BR /&gt;&amp;gt; should change this example to: &lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; pax -r -s ',//*rnew//*,,' -f /dev/rmt/0m &lt;BR /&gt;&lt;BR /&gt;Last bit is right... I'm trying to take from /dev/rmt/0m (but I need to use -t under my implementation), but the substitution is wrong. I'm trying to replace the '/' directory with '/rnew' ... or with nothing at all. I haven't tried anything that will just use an extraction relative to this point, so it's worth a shot, but I expect that I'll still run into the above problems about not recognizing the tape as a tar arhive. :-(&lt;BR /&gt;&lt;BR /&gt;Thanks for the attempted assistance, sorry for the confusion.</description>
      <pubDate>Wed, 26 Jun 2002 16:18:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751966#M70442</guid>
      <dc:creator>Shane Travis</dc:creator>
      <dc:date>2002-06-26T16:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751967#M70443</link>
      <description>Well, I think that the (pax) *documentation* which you have does not match the pax *program* which you have.&lt;BR /&gt;&lt;BR /&gt;Why? You say that for your version "-p" does not take a parameter, but it does give an error message:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; # pax -r -p -s ',//,/rnew/,' -t /dev/rmt/0m -v&lt;BR /&gt;...&lt;BR /&gt;&amp;gt; pax: /rnew/ : Not owner&lt;BR /&gt;&lt;BR /&gt;So (I think) that pax *does* take /rnew/ to be the parameter for "-p".&lt;BR /&gt;&lt;BR /&gt;Also you say that pax does not recognize the archive, but it does seem to *partially* recognize the archive because it lists some paths from the archive:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; rnew/ &lt;BR /&gt;&amp;gt; /rnew/.x11startlog &lt;BR /&gt;&amp;gt; /rnew/hp-ux &lt;BR /&gt;... &lt;BR /&gt;&amp;gt; /rnew/acse.hsd/bin/acse_halt&lt;BR /&gt;&lt;BR /&gt;Perhaps you can get short usage instructions from the *program* (instead of from the documentation). For example on 10.20, "pax -?" (complains and) gives short usage instructions. &lt;BR /&gt;&lt;BR /&gt;I am also a little worried about the&lt;BR /&gt;&lt;BR /&gt;&amp;gt; USTAR format archive&lt;BR /&gt;&lt;BR /&gt;line. Perhaps there is a problem of POSIX versus pre-POSIX tar format. See the tar(1) and tar(4) manual pages.&lt;BR /&gt;&lt;BR /&gt;To determine the archive format, just do:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/rmt/0m of=/tmp/record bs=64k count=1 &lt;BR /&gt;ll /tmp/record&lt;BR /&gt;file /tmp/record&lt;BR /&gt;rm /tmp/record&lt;BR /&gt;&lt;BR /&gt;and report the results here, i.e. the output/messages.&lt;BR /&gt;&lt;BR /&gt;You say that this is HP-UX 8.0. Do you have access to *another* newer system, 10.20 or 11.X, where you could extract the archive with pax(1) and rewrite it with relative (i.e. no leading /) pathnames with plain-old tar(1)? &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Jun 2002 12:33:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751967#M70443</guid>
      <dc:creator>Frank Slootweg</dc:creator>
      <dc:date>2002-06-27T12:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751968#M70444</link>
      <description>&amp;gt; Also you say that pax does not recognize the&lt;BR /&gt;&amp;gt; archive, but it does seem to *partially*&lt;BR /&gt;&amp;gt; recognize the archive because it lists some&lt;BR /&gt;&amp;gt; paths from the archive: &lt;BR /&gt;&lt;BR /&gt;Yeah, that's frustrating. If it ignored everything, I could just accept that... but it tantalizes me with little bits of unpacking. :-)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; For example on 10.20, "pax -?" (complains&lt;BR /&gt;&amp;gt; and) gives short usage instructions. &lt;BR /&gt;&lt;BR /&gt;acsesys server0 26: pax -?&lt;BR /&gt;No match.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Perhaps there is a problem of POSIX versus&lt;BR /&gt;&amp;gt; pre-POSIX tar format. See the tar(1) and tar&lt;BR /&gt;&amp;gt; (4) manual pages. &lt;BR /&gt;&lt;BR /&gt;Could be, I suppose. The 'tar' was done on a 300-series running 8.0, and the pax is (currently) being run from a G30 running 9.04, since that's the only one with a dat drive any more. (The rest burned out and were never replaced.)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; You say that this is HP-UX 8.0. Do you have&lt;BR /&gt;&amp;gt; access to *another* newer system, 10.20 or&lt;BR /&gt;&amp;gt; 11.X, where you could extract the archive&lt;BR /&gt;&amp;gt; with pax(1) and rewrite it with relative&lt;BR /&gt;&amp;gt; (i.e. no leading /) pathnames with plain-old&lt;BR /&gt;&amp;gt; tar(1)? &lt;BR /&gt;&lt;BR /&gt;Not on site, no. 8.0 and 9.04 is all they have there... but the tapes don't have to stay on site. I came to the same conclusion yesterday, and am going to get them to FedEx them to me over the weekend. I can work on them locally (use gtar or pax on one of the newer local systems to get them off the dat, then re-tar them with relative pathnames) and FedEx them back within about a week or so. Not optimal, but I can't see any on-site solution that will work any better than that. At least this way I don't have try and build tools so I can build tools that will fix the problem.&lt;BR /&gt;&lt;BR /&gt;Thanks, everyone, for all the help. I appreciate your efforts in working with me on archaic systems like this, and I _did_ learn a new command. :-)</description>
      <pubDate>Thu, 27 Jun 2002 15:05:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751968#M70444</guid>
      <dc:creator>Shane Travis</dc:creator>
      <dc:date>2002-06-27T15:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751969#M70445</link>
      <description>Final (?) small point:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; acsesys server0 26: pax -? &lt;BR /&gt;&amp;gt; No match.&lt;BR /&gt;&lt;BR /&gt;I think that is a C-shell (or similar) issue. Are you using a C-shell like shell? If so, as far as I know, "No match" is a C-shell error, not a pax one. You probably have to escape the minus or/and the question mark.  &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Jun 2002 11:50:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751969#M70445</guid>
      <dc:creator>Frank Slootweg</dc:creator>
      <dc:date>2002-06-28T11:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751970#M70446</link>
      <description>Hi,&lt;BR /&gt;Also, there is a cumluative pax patch (PHCO_25418). I didn't notice a fix for the error you mentioned in it's description, but it might be of some assistance, if not already installed.&lt;BR /&gt;Good Luck,&lt;BR /&gt;Kel</description>
      <pubDate>Fri, 28 Jun 2002 21:53:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751970#M70446</guid>
      <dc:creator>Kelli Ward</dc:creator>
      <dc:date>2002-06-28T21:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751971#M70447</link>
      <description>Kelli Ward wrote:&lt;BR /&gt;&amp;gt; Also, there is a cumluative pax patch&lt;BR /&gt;&amp;gt; (PHCO_25418). &lt;BR /&gt;&lt;BR /&gt;Appreciate it, Kelli, but that's for a newer version of the O/S than I'm running. Thanks anyway for the pointer.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Frank Slootweg wrote:&lt;BR /&gt;&amp;gt; You probably have to escape the minus or/and&lt;BR /&gt;&amp;gt; the question mark. &lt;BR /&gt;&lt;BR /&gt;Umm... d'oh! I should know that by now.&lt;BR /&gt;&lt;BR /&gt;Anyway, still doesn't work, thus proving how old this version is. :-)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;acsesys server0 23: pax \-\?&lt;BR /&gt;pax: illegal option -- ?&lt;BR /&gt;Usage: pax -[cimopuvy] [-f archive] [-s replstr] [-t device] [pattern...]&lt;BR /&gt;       pax -r [-cimopuvy] [-f archive] [-s replstr] [-t device] [pattern...]&lt;BR /&gt;       pax -w [-adHimuvy] [-b blocking] [-f archive] [-s replstr]&lt;BR /&gt;              [-t device] [-x format] [pathname...]&lt;BR /&gt;       pax -r -w [-ilmopuvy] [-s replstr] [pathname...] directory&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I appreciate all the help everyone offered; the DATs are on their way here, and should arrive tomorrow. Once that happens, it should be a piece of cake to get everything functioning again... especially now that I'm armed with all this new knowledge.&lt;BR /&gt;&lt;BR /&gt;Thanks again.&lt;BR /&gt;</description>
      <pubDate>Tue, 02 Jul 2002 16:19:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751971#M70447</guid>
      <dc:creator>Shane Travis</dc:creator>
      <dc:date>2002-07-02T16:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: 'pax' help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751972#M70448</link>
      <description>Hi,&lt;BR /&gt;OK, how about this one?&lt;BR /&gt;PHCO_20388 Pax Cumulative patch for s700 and s800 for HP-UX 10.2&lt;BR /&gt;Maybe that one will work for you.&lt;BR /&gt;Good luck,&lt;BR /&gt;Kel</description>
      <pubDate>Tue, 02 Jul 2002 21:31:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pax-help/m-p/2751972#M70448</guid>
      <dc:creator>Kelli Ward</dc:creator>
      <dc:date>2002-07-02T21:31:56Z</dc:date>
    </item>
  </channel>
</rss>

