<?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: copying file systems in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481909#M213495</link>
    <description>Will the find not traverse the whole /opt directory tree.&lt;BR /&gt;&lt;BR /&gt;How about&lt;BR /&gt;&lt;BR /&gt;dump 0f - /opt | (cd /new_opt; restore xf -)&lt;BR /&gt;&lt;BR /&gt;I used to use this in Tru64 world.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 09 Feb 2005 06:46:56 GMT</pubDate>
    <dc:creator>golfnut</dc:creator>
    <dc:date>2005-02-09T06:46:56Z</dc:date>
    <item>
      <title>copying file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481906#M213492</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;how can i copy file systems what have other file systems underneath the tree.&lt;BR /&gt;&lt;BR /&gt;I have /opt and /opt/sybase /opt/...&lt;BR /&gt;&lt;BR /&gt;I was using tar.&lt;BR /&gt;cd /var;  tar -cvf - . | (cd /new_var; tar -xvf -)&lt;BR /&gt;&lt;BR /&gt;This copies everyting..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Any ideas??&lt;BR /&gt;&lt;BR /&gt;htanks&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Feb 2005 06:34:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481906#M213492</guid>
      <dc:creator>golfnut</dc:creator>
      <dc:date>2005-02-09T06:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: copying file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481907#M213493</link>
      <description>try find with cpio:&lt;BR /&gt;&lt;BR /&gt;cd /var; find . -print |cpio -pdumxls /newvar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Wed, 09 Feb 2005 06:43:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481907#M213493</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2005-02-09T06:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: copying file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481908#M213494</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can use find dirname -xdev | cpio ....&lt;BR /&gt;&lt;BR /&gt;HTH</description>
      <pubDate>Wed, 09 Feb 2005 06:43:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481908#M213494</guid>
      <dc:creator>Victor Fridyev</dc:creator>
      <dc:date>2005-02-09T06:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: copying file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481909#M213495</link>
      <description>Will the find not traverse the whole /opt directory tree.&lt;BR /&gt;&lt;BR /&gt;How about&lt;BR /&gt;&lt;BR /&gt;dump 0f - /opt | (cd /new_opt; restore xf -)&lt;BR /&gt;&lt;BR /&gt;I used to use this in Tru64 world.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Feb 2005 06:46:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481909#M213495</guid>
      <dc:creator>golfnut</dc:creator>
      <dc:date>2005-02-09T06:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: copying file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481910#M213496</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;-xdev option causes find to avoid file system mount point.&lt;BR /&gt;&lt;BR /&gt;HTH</description>
      <pubDate>Wed, 09 Feb 2005 06:49:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481910#M213496</guid>
      <dc:creator>Victor Fridyev</dc:creator>
      <dc:date>2005-02-09T06:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: copying file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481911#M213497</link>
      <description>Hi,&lt;BR /&gt;We usually use&lt;BR /&gt;&lt;BR /&gt;cd var&lt;BR /&gt;find . -depth -print | cpio -pdlmv /NEWVAR&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Sudeesh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Feb 2005 10:05:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/copying-file-systems/m-p/3481911#M213497</guid>
      <dc:creator>Sudeesh</dc:creator>
      <dc:date>2005-02-09T10:05:50Z</dc:date>
    </item>
  </channel>
</rss>

