<?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: moving large files in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867230#M397863</link>
    <description>hmmmz, what's that???  :(&lt;BR /&gt; &lt;BR /&gt;second try:&lt;BR /&gt; &lt;BR /&gt;find . | cpio -ocB | compress | remsh server2 "cd /dir; uncompress | cpio -icvdumB"&lt;BR /&gt; &lt;BR /&gt;or with tar &amp;amp; gzip:&lt;BR /&gt; &lt;BR /&gt;tar -cvhf - . | gzip -c | remsh server2 "cd /dir; gunzip -c | tar xvf -"&lt;BR /&gt; &lt;BR /&gt;good luck,&lt;BR /&gt;Thierry Poels.&lt;BR /&gt;</description>
    <pubDate>Mon, 25 Oct 2004 13:39:34 GMT</pubDate>
    <dc:creator>Thierry Poels_1</dc:creator>
    <dc:date>2004-10-25T13:39:34Z</dc:date>
    <item>
      <title>moving large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867226#M397859</link>
      <description>I am trying to move large files “directory” from one HPUX 11.00 server to another HPUX 11.00 server.  I have tried using NFS but it is way to slow.  I am now trying to use FTP to move them but I can only move one file a time.  I can not zip up the files because I do not have the space to store such a large file.  I need to do this on several directories.  Is this the best method? What is wrong with this script?   Here is my script:&lt;BR /&gt;&lt;BR /&gt;ftp -n 55.55.55.55 &amp;lt;&amp;lt;-EOF | tee ftplog&lt;BR /&gt;        user mickey mouse &lt;BR /&gt;        binary&lt;BR /&gt;        hash&lt;BR /&gt;        cd /&lt;BR /&gt;        mget /oradata&lt;BR /&gt;        bye&lt;BR /&gt;        E</description>
      <pubDate>Mon, 25 Oct 2004 13:32:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867226#M397859</guid>
      <dc:creator>matthew mills</dc:creator>
      <dc:date>2004-10-25T13:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: moving large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867227#M397860</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;you can use rcp.</description>
      <pubDate>Mon, 25 Oct 2004 13:35:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867227#M397860</guid>
      <dc:creator>Slawomir Gora</dc:creator>
      <dc:date>2004-10-25T13:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: moving large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867228#M397861</link>
      <description>Hi,&lt;BR /&gt; &lt;BR /&gt;customize this one to your needs:&lt;BR /&gt; &lt;BR /&gt;find . | cpio â  ocB | compress | remsh server2 â  cd /dir; uncompress | cpio â  icvdumBâ  &lt;BR /&gt; &lt;BR /&gt;good luck,&lt;BR /&gt;Th</description>
      <pubDate>Mon, 25 Oct 2004 13:36:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867228#M397861</guid>
      <dc:creator>Thierry Poels_1</dc:creator>
      <dc:date>2004-10-25T13:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: moving large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867229#M397862</link>
      <description>One technique I use is tar, compress, and remsh. &lt;BR /&gt; &lt;BR /&gt;tar cf - . | compress -c | remsh myremote "zcat - | ( cd /tmp ; tar xf - )"&lt;BR /&gt; &lt;BR /&gt;You can use ssh instead of remsh also. &lt;BR /&gt; &lt;BR /&gt;This bundles up the files via tar, then compresses the data (for less data traffic across network), uncompresses on the remote server, and then untar.&lt;BR /&gt; &lt;BR /&gt;HTH&lt;BR /&gt; &lt;BR /&gt;-- Rod Hills</description>
      <pubDate>Mon, 25 Oct 2004 13:38:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867229#M397862</guid>
      <dc:creator>Rodney Hills</dc:creator>
      <dc:date>2004-10-25T13:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: moving large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867230#M397863</link>
      <description>hmmmz, what's that???  :(&lt;BR /&gt; &lt;BR /&gt;second try:&lt;BR /&gt; &lt;BR /&gt;find . | cpio -ocB | compress | remsh server2 "cd /dir; uncompress | cpio -icvdumB"&lt;BR /&gt; &lt;BR /&gt;or with tar &amp;amp; gzip:&lt;BR /&gt; &lt;BR /&gt;tar -cvhf - . | gzip -c | remsh server2 "cd /dir; gunzip -c | tar xvf -"&lt;BR /&gt; &lt;BR /&gt;good luck,&lt;BR /&gt;Thierry Poels.&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Oct 2004 13:39:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867230#M397863</guid>
      <dc:creator>Thierry Poels_1</dc:creator>
      <dc:date>2004-10-25T13:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: moving large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867231#M397864</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The problem is that ftp transfers files and not directories.&lt;BR /&gt;&lt;BR /&gt;I've done this before using 'rcp'.  You'll need host equivalence setup between the two servers (.rhosts).  I used it to move several hundred gigabytes of Oracle files between systems and it worked just fine.  Something like this should work:&lt;BR /&gt;&lt;BR /&gt;rcp -pr host1:/oradata .&lt;BR /&gt;&lt;BR /&gt;I'd suggest testing it with some small files and directories first to make sure it behaves like you expect.&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Oct 2004 13:40:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867231#M397864</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2004-10-25T13:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: moving large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867232#M397865</link>
      <description>Can use the dump utility. I find it faster than tar/cpio&lt;BR /&gt;&lt;BR /&gt;/usr/sbin/vxdump 0f - /dev/vgXX/lvYY | remsh &lt;NEW_HOST&gt; '(cd /&lt;THE_DIRECTORY_TO_DUMP_TO&gt;; /usr/sbin/vxrestore -rf -)'&lt;BR /&gt;&lt;/THE_DIRECTORY_TO_DUMP_TO&gt;&lt;/NEW_HOST&gt;</description>
      <pubDate>Mon, 25 Oct 2004 13:42:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867232#M397865</guid>
      <dc:creator>Rick Garland</dc:creator>
      <dc:date>2004-10-25T13:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: moving large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867233#M397866</link>
      <description>NFS mount the files DIR to the client server and do a copy. That shall be possible. &lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Prashant</description>
      <pubDate>Mon, 25 Oct 2004 13:42:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867233#M397866</guid>
      <dc:creator>Prashant Zanwar_4</dc:creator>
      <dc:date>2004-10-25T13:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: moving large files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867234#M397867</link>
      <description>thanks</description>
      <pubDate>Mon, 25 Oct 2004 13:42:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/moving-large-files/m-p/4867234#M397867</guid>
      <dc:creator>matthew mills</dc:creator>
      <dc:date>2004-10-25T13:42:53Z</dc:date>
    </item>
  </channel>
</rss>

