<?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 or tar in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787612#M78786</link>
    <description>Rainer,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;MIRROR it!!!!&lt;BR /&gt;&lt;BR /&gt;Break the mirror and kabang you have a COPY!!!!!!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
    <pubDate>Fri, 16 Aug 2002 11:07:20 GMT</pubDate>
    <dc:creator>harry d brown jr</dc:creator>
    <dc:date>2002-08-16T11:07:20Z</dc:date>
    <item>
      <title>cpio or tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787606#M78780</link>
      <description>I need to copy a couple of GIGS from one directory to another in a minimum time&lt;BR /&gt;&lt;BR /&gt;From your experience which one will be  faster?  tar or cpio as shown below&lt;BR /&gt;&lt;BR /&gt;tar -cf - .|(cd dstdir;tar -xpf )&lt;BR /&gt;find . | cpio -pudm dstdir&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Rainer&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Aug 2002 08:56:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787606#M78780</guid>
      <dc:creator>Rainer von Bongartz</dc:creator>
      <dc:date>2002-08-16T08:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: cpio or tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787607#M78781</link>
      <description>Hi Rainer,&lt;BR /&gt;&lt;BR /&gt;What about cp -R?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Justo.</description>
      <pubDate>Fri, 16 Aug 2002 09:01:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787607#M78781</guid>
      <dc:creator>Justo Exposito</dc:creator>
      <dc:date>2002-08-16T09:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: cpio or tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787608#M78782</link>
      <description>Hi Rainer.&lt;BR /&gt;&lt;BR /&gt;I feel that tar is more fatser than cpio.</description>
      <pubDate>Fri, 16 Aug 2002 09:03:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787608#M78782</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2002-08-16T09:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: cpio or tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787609#M78783</link>
      <description>From Bill Hassell's seminar we've learned that &lt;BR /&gt;&lt;BR /&gt;# cd .../src&lt;BR /&gt;# find . | cpio -pudlmv .../dest&lt;BR /&gt;&lt;BR /&gt;is by far the fastest and safest way&lt;BR /&gt;&lt;BR /&gt;Check:&lt;BR /&gt;&lt;BR /&gt;# find .../src | wc -l&lt;BR /&gt;# find .../dest | wc -l&lt;BR /&gt;&lt;BR /&gt;should be the same&lt;BR /&gt;&lt;BR /&gt;Thank's Bill :)</description>
      <pubDate>Fri, 16 Aug 2002 09:06:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787609#M78783</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-08-16T09:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: cpio or tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787610#M78784</link>
      <description>This can take sometimes for a few GIGS.&lt;BR /&gt;If the directories are within the same file system , this is even worse.&lt;BR /&gt;&lt;BR /&gt;Personally I use cpio.&lt;BR /&gt;But if it's huge tranfer, I would backup to tape and restore to the new directory.&lt;BR /&gt;&lt;BR /&gt;Jean-Luc&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Aug 2002 09:06:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787610#M78784</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2002-08-16T09:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: cpio or tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787611#M78785</link>
      <description>I recently did about 140 gigs with cpio &lt;BR /&gt;did only the following&lt;BR /&gt;&lt;BR /&gt;cd /start_dir&lt;BR /&gt;find . -depth -print | cpio -pd /dest_dir&lt;BR /&gt;&lt;BR /&gt;Threw it into a script (was replacing an array, and copied from /homexx to /newhomexx.&lt;BR /&gt;&lt;BR /&gt;I found this to be efficient (make sure you do not use -v anywhere, and you will be fine.)&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Aug 2002 09:58:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787611#M78785</guid>
      <dc:creator>Judy Traynor</dc:creator>
      <dc:date>2002-08-16T09:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: cpio or tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787612#M78786</link>
      <description>Rainer,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;MIRROR it!!!!&lt;BR /&gt;&lt;BR /&gt;Break the mirror and kabang you have a COPY!!!!!!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Fri, 16 Aug 2002 11:07:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787612#M78786</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-08-16T11:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: cpio or tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787613#M78787</link>
      <description>Hi Rainer,&lt;BR /&gt;&lt;BR /&gt;I used tar until Bill Hassell pointed me towards cpio -pudlmv.  It is indeed much faster.&lt;BR /&gt;&lt;BR /&gt;I prefer to omit the "v" option because of the time it takes to display filenames on the screen.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Fri, 16 Aug 2002 11:13:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpio-or-tar/m-p/2787613#M78787</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-08-16T11:13:26Z</dc:date>
    </item>
  </channel>
</rss>

