<?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 files in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690105#M247032</link>
    <description>cpio is a command in HP-UX &lt;BR /&gt;. You can find more information by # man cpio. &lt;BR /&gt;cpio - copy file archives in and out; duplicate directory trees&lt;BR /&gt;&lt;BR /&gt;-Arun &lt;BR /&gt;</description>
    <pubDate>Tue, 13 Dec 2005 00:59:58 GMT</pubDate>
    <dc:creator>Arunvijai_4</dc:creator>
    <dc:date>2005-12-13T00:59:58Z</dc:date>
    <item>
      <title>cpio files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690103#M247030</link>
      <description>Are cpio special types of files ?</description>
      <pubDate>Tue, 13 Dec 2005 00:20:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690103#M247030</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-12-13T00:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: cpio files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690104#M247031</link>
      <description>There is nothing special about cpio files. It is basically a command to generate file archive. If system is not propeprly patched, it has limitation og 2GB. It can not archive files larger than 2GB.&lt;BR /&gt;&lt;BR /&gt;cpio comes in handy many times. Such as follows.&lt;BR /&gt;&lt;BR /&gt;$ find . | cpio -pudlmv /destination_dir</description>
      <pubDate>Tue, 13 Dec 2005 00:57:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690104#M247031</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-12-13T00:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: cpio files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690105#M247032</link>
      <description>cpio is a command in HP-UX &lt;BR /&gt;. You can find more information by # man cpio. &lt;BR /&gt;cpio - copy file archives in and out; duplicate directory trees&lt;BR /&gt;&lt;BR /&gt;-Arun &lt;BR /&gt;</description>
      <pubDate>Tue, 13 Dec 2005 00:59:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690105#M247032</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-12-13T00:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: cpio files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690106#M247033</link>
      <description>Shiv,&lt;BR /&gt;                                  CPIO&lt;BR /&gt;&lt;BR /&gt;Things to remember about cpio:&lt;BR /&gt;&lt;BR /&gt;   * cpio is very particular about its options. If the options used to&lt;BR /&gt;     restore aren't compatible with the options used to backup, it will&lt;BR /&gt;     complain. Fortunately, the complaints are fairly self-explanatory.&lt;BR /&gt;&lt;BR /&gt;                 Command                            Description&lt;BR /&gt;&lt;BR /&gt;   find /etc/hosts -print | cpio -ocx &amp;gt;&lt;BR /&gt;               /dev/rmt/0m                        backup one file&lt;BR /&gt;&lt;BR /&gt;       cat /etc/hosts | cpio -ocx &amp;gt;&lt;BR /&gt;               /dev/rmt/0m                 another way to backup one file&lt;BR /&gt;&lt;BR /&gt;       find . -print | cpio -ocx &amp;gt;          backup all files in current&lt;BR /&gt;               /dev/rmt/0m                           directory&lt;BR /&gt;&lt;BR /&gt;         cpio -ictv &amp;lt; /dev/rmt/0m            verify what is on the tape&lt;BR /&gt;&lt;BR /&gt;        cpio -iudmcx &amp;lt; /dev/rmt/0m           restore all files on tape&lt;BR /&gt;&lt;BR /&gt;       cpio -icvdxumB &amp;lt; /dev/rmt/0m&lt;BR /&gt;               'file_name'                        restore one file&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good Luck,</description>
      <pubDate>Tue, 13 Dec 2005 03:15:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690106#M247033</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2005-12-13T03:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: cpio files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690107#M247034</link>
      <description>cpio is used to backup and restore files to tapes or regular files. See man cpio for details.&lt;BR /&gt;&lt;BR /&gt;-Muthu</description>
      <pubDate>Tue, 13 Dec 2005 03:39:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690107#M247034</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-12-13T03:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: cpio files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690108#M247035</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;cpio - copy file archives in and out&lt;BR /&gt;&lt;BR /&gt;cpio is nothing but a command used to backup and restore file.&lt;BR /&gt;&lt;BR /&gt;See man cpio for more details.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sunil</description>
      <pubDate>Tue, 13 Dec 2005 05:27:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-files/m-p/3690108#M247035</guid>
      <dc:creator>Sยภเl Kย๓คг</dc:creator>
      <dc:date>2005-12-13T05:27:19Z</dc:date>
    </item>
  </channel>
</rss>

