<?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/3461688#M210243</link>
    <description>find (whatever) | cpio -ocBv &amp;gt; /dev/rmt/??&lt;BR /&gt;&lt;BR /&gt;to backup&lt;BR /&gt;&lt;BR /&gt;cpio -icBvdmu &amp;lt;&amp;lt; /dev/rmt/??&lt;BR /&gt;&lt;BR /&gt;to restore&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 12 Jan 2005 12:12:05 GMT</pubDate>
    <dc:creator>Stephen Keane</dc:creator>
    <dc:date>2005-01-12T12:12:05Z</dc:date>
    <item>
      <title>cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461687#M210242</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;I want to backup files to tape using cpio command. what is the sintaxis for this command for backup and restore???&lt;BR /&gt;&lt;BR /&gt;Thanks for ur hlep!</description>
      <pubDate>Wed, 12 Jan 2005 12:09:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461687#M210242</guid>
      <dc:creator>Edwin Ruiz_2</dc:creator>
      <dc:date>2005-01-12T12:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461688#M210243</link>
      <description>find (whatever) | cpio -ocBv &amp;gt; /dev/rmt/??&lt;BR /&gt;&lt;BR /&gt;to backup&lt;BR /&gt;&lt;BR /&gt;cpio -icBvdmu &amp;lt;&amp;lt; /dev/rmt/??&lt;BR /&gt;&lt;BR /&gt;to restore&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Jan 2005 12:12:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461688#M210243</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-01-12T12:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461689#M210244</link>
      <description>Hi Edwin,&lt;BR /&gt;&lt;BR /&gt;Take a look at this chapter,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://docs.hp.com/en/B2355-90672/ch09.html" target="_blank"&gt;http://docs.hp.com/en/B2355-90672/ch09.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;We do not use cpio now-a-days because of certain limitation on the size of files it can handle. On hp-ux fbackup/frecover is more often used than cpio at present.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds</description>
      <pubDate>Wed, 12 Jan 2005 12:14:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461689#M210244</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2005-01-12T12:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461690#M210245</link>
      <description>thakns Stephen</description>
      <pubDate>Wed, 12 Jan 2005 12:15:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461690#M210245</guid>
      <dc:creator>Edwin Ruiz_2</dc:creator>
      <dc:date>2005-01-12T12:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461691#M210246</link>
      <description>Note that should be&lt;BR /&gt;&lt;BR /&gt;cpio -icBvdmu &amp;lt; /dev/rmt/??&lt;BR /&gt;&lt;BR /&gt;Not:&lt;BR /&gt;&lt;BR /&gt;cpio -icBvdmu &amp;lt;&amp;lt; /dev/rmt/??&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Bit of finger trouble there.&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Jan 2005 12:19:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461691#M210246</guid>
      <dc:creator>Stephen Keane</dc:creator>
      <dc:date>2005-01-12T12:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: cpio</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461692#M210247</link>
      <description>Depending upon the tape drive, you can often see huge performance gains by reblocking cpio via dd. &lt;BR /&gt;&lt;BR /&gt;So to add this layer:&lt;BR /&gt;&lt;BR /&gt;find (whatever) | cpio -ocBv | dd ibs=5k obs=200k of=/dev/rmt/??&lt;BR /&gt;&lt;BR /&gt;to backup&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/rmt/?? ibs=200k obs=5k | cpio -icBvdmu&lt;BR /&gt;&lt;BR /&gt;to restore&lt;BR /&gt;&lt;BR /&gt;The 'B' cpio option specifies 5K blocking so leave those alone but play the the 200k blocking to get overall highest throughput. It should be an integral multiple of 5k.&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Jan 2005 12:23:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio/m-p/3461692#M210247</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-01-12T12:23:09Z</dc:date>
    </item>
  </channel>
</rss>

