<?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: backup command in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383191#M348983</link>
    <description>Why are you using cpio?&lt;BR /&gt;The command tar is also available and more common. :-)</description>
    <pubDate>Thu, 19 Mar 2009 11:08:29 GMT</pubDate>
    <dc:creator>B. Hulst</dc:creator>
    <dc:date>2009-03-19T11:08:29Z</dc:date>
    <item>
      <title>backup command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383185#M348977</link>
      <description>my tape device path is /dev/rmt/0m &lt;BR /&gt;&lt;BR /&gt;I would like to use cpio command  , I tried to see the man page of cpio , but still can't get help ( I really headache with it ) &lt;BR /&gt;&lt;BR /&gt;can adivse if I want to backup , list and restore file from and to the tape , how to do it ? besides , if I want to extract a specific directory from the tape ( not all files in the tape , only restore a directory ) , what can i do ? thx&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Mar 2009 08:59:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383185#M348977</guid>
      <dc:creator>heaman1</dc:creator>
      <dc:date>2009-03-19T08:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: backup command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383186#M348978</link>
      <description>Example :-&lt;BR /&gt;&lt;BR /&gt;Copy the old data to new mountpoint&lt;BR /&gt;# cd /home/eem.old&lt;BR /&gt;# find . -xdev -print | cpio -pdmuxl /home/eem&lt;BR /&gt;&lt;BR /&gt;can try as below , &lt;BR /&gt;&lt;BR /&gt;#cpio -pdmuxl file.tar /dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Johnson</description>
      <pubDate>Thu, 19 Mar 2009 09:16:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383186#M348978</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2009-03-19T09:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: backup command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383187#M348979</link>
      <description>create &lt;BR /&gt;   # find . -print |cpio -ocBv  /dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;to list &lt;BR /&gt;   # cpio -itcvB &amp;lt; /dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;extract&lt;BR /&gt;   # cpio -icvdBum file &amp;lt; /dev/rmt/0m&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Mar 2009 09:18:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383187#M348979</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2009-03-19T09:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: backup command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383188#M348980</link>
      <description>Hi,&lt;BR /&gt;           &lt;BR /&gt;    You can use this command to take backup.&lt;BR /&gt;Go the required directory&lt;BR /&gt;#ls | cpio -o &amp;gt; /dev/rmt/0m  &lt;BR /&gt;&lt;BR /&gt;To restore from the tape use the following command&lt;BR /&gt;&lt;BR /&gt;#cpio -i &amp;lt; /dev/rmt/0m  &lt;BR /&gt;&lt;BR /&gt;Rgds &lt;BR /&gt;Bijeesh</description>
      <pubDate>Thu, 19 Mar 2009 09:32:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383188#M348980</guid>
      <dc:creator>Bijeesh</dc:creator>
      <dc:date>2009-03-19T09:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: backup command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383189#M348981</link>
      <description>thx replies&lt;BR /&gt;&lt;BR /&gt;I have problem to extract files,&lt;BR /&gt;&lt;BR /&gt;I use cpio -i   dev/cciss &amp;lt; /dev/rmt/0m , it pops &lt;BR /&gt;&lt;BR /&gt;cpio: read error: Cannot allocate memory&lt;BR /&gt;&lt;BR /&gt;i use cpio -icvdBum home/edp &amp;lt; /dev/rmt/0m  ( to restore the directory /home/edp to local directory ) but it only create home/edp to local directory , this directory is empty , can advise is wrong ? thx</description>
      <pubDate>Thu, 19 Mar 2009 09:53:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383189#M348981</guid>
      <dc:creator>heaman1</dc:creator>
      <dc:date>2009-03-19T09:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: backup command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383190#M348982</link>
      <description>were to able to list those files before the extract please?&lt;BR /&gt;cpio -itcvB &amp;lt; /dev/rmt/0m</description>
      <pubDate>Thu, 19 Mar 2009 10:06:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383190#M348982</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2009-03-19T10:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: backup command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383191#M348983</link>
      <description>Why are you using cpio?&lt;BR /&gt;The command tar is also available and more common. :-)</description>
      <pubDate>Thu, 19 Mar 2009 11:08:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383191#M348983</guid>
      <dc:creator>B. Hulst</dc:creator>
      <dc:date>2009-03-19T11:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: backup command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383192#M348984</link>
      <description>thx replis , &lt;BR /&gt;&lt;BR /&gt;i also don't want to use cpio , but the command used in our company for long  time , i can't change it ...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;cpio -itcvB &amp;lt; /dev/rmt/0m is ok to list fies , now I would like to restore files from the tape , I use the below command but still not work , can advise what can i do ?  thx&lt;BR /&gt;&lt;BR /&gt;cpio -i dev/cciss &amp;lt; /dev/rmt/0m &lt;BR /&gt;&lt;BR /&gt;cpio -icvdBum home/edp &amp;lt; /dev/rmt/0m</description>
      <pubDate>Fri, 20 Mar 2009 00:34:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383192#M348984</guid>
      <dc:creator>heaman1</dc:creator>
      <dc:date>2009-03-20T00:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: backup command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383193#M348985</link>
      <description>&amp;gt;I also don't want to use cpio&lt;BR /&gt;&lt;BR /&gt;Then don't, use a more rational command.  You can use pax(1).  And then add "-x cpio".</description>
      <pubDate>Fri, 20 Mar 2009 01:36:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383193#M348985</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-03-20T01:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: backup command</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383194#M348986</link>
      <description>&amp;gt;cpio -itcvB &amp;lt; /dev/rmt/0m is ok to list files,&lt;BR /&gt;&lt;BR /&gt;pax -f /dev/rmt/0m -v&lt;BR /&gt;&lt;BR /&gt;&amp;gt;restore files from the tape, I use the below command but still not work&lt;BR /&gt;&lt;BR /&gt;pax -f /dev/rmt/0m -r -v dev/cciss</description>
      <pubDate>Fri, 20 Mar 2009 01:48:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-command/m-p/4383194#M348986</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-03-20T01:48:41Z</dc:date>
    </item>
  </channel>
</rss>

