<?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: cpio in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680485#M917422</link>
    <description>Hi Frank&lt;BR /&gt;   I have tried using 'dd' command. Please find attached as the output of the 'dd' command.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Prathap.</description>
    <pubDate>Wed, 13 Mar 2002 16:43:39 GMT</pubDate>
    <dc:creator>Prathap_1</dc:creator>
    <dc:date>2002-03-13T16:43:39Z</dc:date>
    <item>
      <title>cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680462#M917399</link>
      <description>Hi&lt;BR /&gt;  I am trying to read the contents of the tape with the cpio -icBvt /dev/rmt/1m. It is getting hanged there. Can anyone help me out. Help me out in extracting the tape to disk.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Prathap.</description>
      <pubDate>Mon, 11 Mar 2002 18:10:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680462#M917399</guid>
      <dc:creator>Prathap_1</dc:creator>
      <dc:date>2002-03-11T18:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680463#M917400</link>
      <description>&lt;BR /&gt;DO this:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/rmt/1m of=/large_diskarea&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Mon, 11 Mar 2002 18:11:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680463#M917400</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-03-11T18:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680464#M917401</link>
      <description>Hi Pratap,&lt;BR /&gt;&lt;BR /&gt;Try &lt;BR /&gt;&lt;BR /&gt;cpio -itBv &amp;lt; /dev/rmt/1m&lt;BR /&gt;&lt;BR /&gt;Are you using the redirector "&amp;lt;". Also You are using the "c" as well as "t" option,&lt;BR /&gt;&lt;BR /&gt;c --&amp;gt; Copy (extract)&lt;BR /&gt;t --&amp;gt; List Contents (No extract)&lt;BR /&gt;&lt;BR /&gt;Try this,&lt;BR /&gt;&lt;BR /&gt;cpio -itBvdl &amp;lt; /dev/rmt/1m &lt;BR /&gt;to list contents of tape&lt;BR /&gt;&lt;BR /&gt;cpio -icBvdul &amp;lt; /dev/rmt/1m &lt;BR /&gt;to extract contents of tape to disk. Keep an eye on the path it is extracting to.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Mar 2002 18:14:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680464#M917401</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-03-11T18:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680465#M917402</link>
      <description>You must use the same options to read the tape that were used to write it.&lt;BR /&gt;# cpio -itcvB &amp;lt; /dev/rmt/1m&lt;BR /&gt;should work.&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Mar 2002 18:25:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680465#M917402</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-03-11T18:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680466#M917403</link>
      <description>Hi Sanjay&lt;BR /&gt;   Thanks for the info. I have tried the options given by you. I am getting the error called 'Out of Phase--get help', Perhaps the C option should not be used.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Prathap.</description>
      <pubDate>Mon, 11 Mar 2002 18:25:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680466#M917403</guid>
      <dc:creator>Prathap_1</dc:creator>
      <dc:date>2002-03-11T18:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680467#M917404</link>
      <description>don't forget the (too large) block size in order not to miss any bits:&lt;BR /&gt;&lt;BR /&gt;dd if=./dev/rmt/1m ibs=102400 of=tape.cpio&lt;BR /&gt;file tape.cpio&lt;BR /&gt;&lt;BR /&gt;if cpio still has trouble reading the data, try to use GNU's version of cpio and omit the -c argument. GNU's cpio will try to find out itself and understands more cpio formats than native HP-UX cpio.&lt;BR /&gt;&lt;BR /&gt;GNU cpio can be found and installed from e.g. &lt;A href="ftp://download.xs4all.nl/pub/mirror/gnu/cpio/cpio-2.4.2.tar.gz" target="_blank"&gt;ftp://download.xs4all.nl/pub/mirror/gnu/cpio/cpio-2.4.2.tar.gz&lt;/A&gt; (I couln't find a precompiler binary for HP-UX)&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Mar 2002 18:27:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680467#M917404</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-03-11T18:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680468#M917405</link>
      <description>Hi Pratap,&lt;BR /&gt;&lt;BR /&gt;Try these links,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support3.external.hp.com/cki/bin/doc.pl/sid=a8192c390200bbbf49/screen=ckiDisplayDocument?docId=200000007948508" target="_blank"&gt;http://us-support3.external.hp.com/cki/bin/doc.pl/sid=a8192c390200bbbf49/screen=ckiDisplayDocument?docId=200000007948508&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://us-support3.external.hp.com/cki/bin/doc.pl/sid=a8192c390200bbbf49/screen=ckiDisplayDocument?docId=200000024598480" target="_blank"&gt;http://us-support3.external.hp.com/cki/bin/doc.pl/sid=a8192c390200bbbf49/screen=ckiDisplayDocument?docId=200000024598480&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Mar 2002 18:34:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680468#M917405</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-03-11T18:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680469#M917406</link>
      <description>Hi Sanjoy&lt;BR /&gt;   I tried the solutions given in the links. Still I am getting the error. If I specify the 'c' option, I am getting the error C option should not be used. I I did't specify the 'c' option, I am getting the error 'C' option should be used.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Prathap.</description>
      <pubDate>Mon, 11 Mar 2002 18:48:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680469#M917406</guid>
      <dc:creator>Prathap_1</dc:creator>
      <dc:date>2002-03-11T18:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680470#M917407</link>
      <description>Here's a precompiled GNU cpio binary&lt;BR /&gt;&lt;BR /&gt;put it somewhere in your path and issue&lt;BR /&gt;&lt;BR /&gt;# ncpio --io-size=102400 -i -t -v &lt;BR /&gt;and tell us what happens</description>
      <pubDate>Mon, 11 Mar 2002 18:53:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680470#M917407</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-03-11T18:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680471#M917408</link>
      <description>Hi Prathap,&lt;BR /&gt;Did you rewind the tape first? Rewind the tape first with&lt;BR /&gt;mt -t /dev/rmt/1m rew &lt;BR /&gt;and then use cpio command to list the contents&lt;BR /&gt;&lt;BR /&gt;I hope this will help&lt;BR /&gt;&lt;BR /&gt;Aftab&lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Mon, 11 Mar 2002 18:56:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680471#M917408</guid>
      <dc:creator>Aftab Sadiq</dc:creator>
      <dc:date>2002-03-11T18:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680472#M917409</link>
      <description>Tried myself to pick up that binary, but got a 404, maybe this helps&lt;BR /&gt;&lt;BR /&gt;# cd /tmp&lt;BR /&gt;# gzip -d &lt;CPIO.TGZ&gt;&lt;/CPIO.TGZ&gt;# ncpio --io-size=102400 -i -t -v</description>
      <pubDate>Mon, 11 Mar 2002 18:57:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680472#M917409</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-03-11T18:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680473#M917410</link>
      <description>Hi Pratap,&lt;BR /&gt;&lt;BR /&gt;ARe you able to list the contents of the archive.&lt;BR /&gt;&lt;BR /&gt;cpio -itBvdul &amp;lt; /dev/rmt/1m&lt;BR /&gt;&lt;BR /&gt;If you are able to do so, then try,&lt;BR /&gt;&lt;BR /&gt;cpio -icBvdulR &lt;BR /&gt;You could be having a media problem. Have you tried with another media. Or you can try this media on another server.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Mar 2002 19:05:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680473#M917410</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-03-11T19:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680474#M917411</link>
      <description>One person suggested the below.  Do you need to&lt;BR /&gt;rewind the tape inbetween the list command and the extract command?&lt;BR /&gt;&lt;BR /&gt;mt -t /dev/rmt/1m&lt;BR /&gt;cpio -itBvdul &amp;lt; /dev/rmt/1m &lt;BR /&gt;&lt;BR /&gt;If you are able to do so, then try, &lt;BR /&gt;&lt;BR /&gt;mt -t /dev/rmt/1m&lt;BR /&gt;cpio -icBvdulR &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Mar 2002 19:27:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680474#M917411</guid>
      <dc:creator>jd-gt</dc:creator>
      <dc:date>2002-03-11T19:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680475#M917412</link>
      <description>Hi Procura&lt;BR /&gt;   Can you let me know where can I get the ncpio utility.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Prathap.</description>
      <pubDate>Mon, 11 Mar 2002 19:27:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680475#M917412</guid>
      <dc:creator>Prathap_1</dc:creator>
      <dc:date>2002-03-11T19:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680476#M917413</link>
      <description>Hi&lt;BR /&gt;   I have tried all the solutions, still I am not able to read the contents of the tape.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Prathap.</description>
      <pubDate>Mon, 11 Mar 2002 19:39:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680476#M917413</guid>
      <dc:creator>Prathap_1</dc:creator>
      <dc:date>2002-03-11T19:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680477#M917414</link>
      <description>Hi Pratap,&lt;BR /&gt;&lt;BR /&gt;Try this,&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/rmt/1m ibs=1024k obs=1k | cpio -it&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 11 Mar 2002 19:41:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680477#M917414</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-03-11T19:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680478#M917415</link>
      <description>Hi Sanjay&lt;BR /&gt;   I have tried but still getting the same error.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Prathap.</description>
      <pubDate>Mon, 11 Mar 2002 19:59:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680478#M917415</guid>
      <dc:creator>Prathap_1</dc:creator>
      <dc:date>2002-03-11T19:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680479#M917416</link>
      <description>Have you tried using the pax command?&lt;BR /&gt;pax (Portable Archive eXchange) is able to read and save both tar and cpio format tapes.&lt;BR /&gt;&lt;BR /&gt;man pax for examples.</description>
      <pubDate>Mon, 11 Mar 2002 20:03:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680479#M917416</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2002-03-11T20:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680480#M917417</link>
      <description>Hi Melvyn&lt;BR /&gt;   Yeah. I have tried pax -r -f /dev/rmt/1m. Still I am not able to read the tape.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Prathap.</description>
      <pubDate>Mon, 11 Mar 2002 20:05:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680480#M917417</guid>
      <dc:creator>Prathap_1</dc:creator>
      <dc:date>2002-03-11T20:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680481#M917418</link>
      <description>Hi Prathap,&lt;BR /&gt;&lt;BR /&gt;Maybe I missed this, but what was the complete command line used to create the cpio archive?&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Mon, 11 Mar 2002 20:57:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/2680481#M917418</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-03-11T20:57:50Z</dc:date>
    </item>
  </channel>
</rss>

