<?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: Transfer files between two systems in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430552#M2854</link>
    <description>Many variables determine what you SHOULD use.&lt;BR /&gt;First, is this frequent, or infrequent activity.  Is this common activity, but not necessarilly shared data? or Is is data that needs to be shared?  Is it backup data?&lt;BR /&gt;&lt;BR /&gt;If this is infrequent (occasionally having to copy a file) save the security headache's and FTP the data needed.  FTP allows put and get of multiple files in the same directory, so should be enough.&lt;BR /&gt;&lt;BR /&gt;If this is more common, look at using either a $HOME/.rhosts or /etc/hosts.equiv, and rcp'ing the data.&lt;BR /&gt;&lt;BR /&gt;If this is backup copy, or data that needs to be in two locations at the same time, rsync or rdist are good choices, with one large note.  root should not be allowed to run rdist!  Users should use rdist, or rsync and Never root!&lt;BR /&gt;&lt;BR /&gt;If this is data that does not have to be in two locations, but used by two or more locations, then NFS is the best choice.  Data can sit on a server, but clients access data as if it were local.  If you are new to HP-UX, SAM does a pretty good job of helping you set up NFS client and server.&lt;BR /&gt;&lt;BR /&gt;Best of luck!</description>
    <pubDate>Thu, 13 Jul 2000 16:16:52 GMT</pubDate>
    <dc:creator>Shannon Petry</dc:creator>
    <dc:date>2000-07-13T16:16:52Z</dc:date>
    <item>
      <title>Transfer files between two systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430546#M2848</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;What is the savest and fastest way to transfering files (one dir) between two systems?&lt;BR /&gt;HP-UX 10.20 10mb network.&lt;BR /&gt;&lt;BR /&gt;Marcel</description>
      <pubDate>Thu, 13 Jul 2000 07:55:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430546#M2848</guid>
      <dc:creator>Marcel Boon</dc:creator>
      <dc:date>2000-07-13T07:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer files between two systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430547#M2849</link>
      <description>Depending upon what you are trying to acheive, you could look at:&lt;BR /&gt;&lt;BR /&gt;ftp&lt;BR /&gt;rcp&lt;BR /&gt;NFS mounted file systems&lt;BR /&gt;&lt;BR /&gt;I would suggest first look at rcp, then ftp, using man pages.&lt;BR /&gt;&lt;BR /&gt;For further information, you could visit:&lt;BR /&gt;&lt;A href="http://www.docs.hp.com" target="_blank"&gt;http://www.docs.hp.com&lt;/A&gt;</description>
      <pubDate>Thu, 13 Jul 2000 07:59:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430547#M2849</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2000-07-13T07:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer files between two systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430548#M2850</link>
      <description>Use rcp -p -r originating_server:/directory target_server:/directory.&lt;BR /&gt;Update /.rhosts file with the server name and user name.</description>
      <pubDate>Thu, 13 Jul 2000 08:06:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430548#M2850</guid>
      <dc:creator>CHRIS_ANORUO</dc:creator>
      <dc:date>2000-07-13T08:06:38Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer files between two systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430549#M2851</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;first check access permissions on destination system:&lt;BR /&gt;remsh &lt;DESTHOST&gt; who&lt;BR /&gt;If you get remshd: Login incorrect.&lt;BR /&gt;You have to create/edit $HOME/.rhosts at the destination system:&lt;BR /&gt;Add a line with the source systen hostname.&lt;BR /&gt;Then remsh should work.&lt;BR /&gt;To copy a directory (with all subdirs):&lt;BR /&gt;cd &lt;SOURCEDIR&gt;&lt;BR /&gt;find . -depth | cpio -ocB | remsh &lt;DESTHOST&gt; "cd &lt;DESTDIR&gt; ; cpio -imdvcB"&lt;BR /&gt;This will copy all the files with the benefit that all file attributes are set at the destination system equal to the source system.&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;Andrew&lt;/DESTDIR&gt;&lt;/DESTHOST&gt;&lt;/SOURCEDIR&gt;&lt;/DESTHOST&gt;</description>
      <pubDate>Thu, 13 Jul 2000 08:09:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430549#M2851</guid>
      <dc:creator>Andreas Voss</dc:creator>
      <dc:date>2000-07-13T08:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer files between two systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430550#M2852</link>
      <description>As the posts said ftp, rcp they all work great.  Your trade-offs are with rcp you need to open up the systems some with you .rhosts and hosts.equiv and such.  If security is not that big of an issue with you rcp is very nice.&lt;BR /&gt;ftp is a little more secure as it requires interaction, but, can be scripted.  Of course then you have an id and password in the script.  You can work around that, it just takes a little more work.&lt;BR /&gt;Will you be doing the copies on a frequent basis?  That will help determine what process you use.  There is another process which I have looked at, but, honestly never tried.  rdist.  It is documented in the Internet Services, Installing and Administering Guide.  You create a list of files on a master system that you want to have copied to other systems.  Any time one of those files changes it gets copied out to the other system(s).  If you need that type of functionality rdist looks very interesting.  It's all automatic.&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Jul 2000 13:24:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430550#M2852</guid>
      <dc:creator>Dave Wherry</dc:creator>
      <dc:date>2000-07-13T13:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer files between two systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430551#M2853</link>
      <description>rdist is an excellent tool if you have directories or files that you need to keep synchronized across servers.  It is fairly simple to set up a basic distfile.</description>
      <pubDate>Thu, 13 Jul 2000 14:43:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430551#M2853</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2000-07-13T14:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Transfer files between two systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430552#M2854</link>
      <description>Many variables determine what you SHOULD use.&lt;BR /&gt;First, is this frequent, or infrequent activity.  Is this common activity, but not necessarilly shared data? or Is is data that needs to be shared?  Is it backup data?&lt;BR /&gt;&lt;BR /&gt;If this is infrequent (occasionally having to copy a file) save the security headache's and FTP the data needed.  FTP allows put and get of multiple files in the same directory, so should be enough.&lt;BR /&gt;&lt;BR /&gt;If this is more common, look at using either a $HOME/.rhosts or /etc/hosts.equiv, and rcp'ing the data.&lt;BR /&gt;&lt;BR /&gt;If this is backup copy, or data that needs to be in two locations at the same time, rsync or rdist are good choices, with one large note.  root should not be allowed to run rdist!  Users should use rdist, or rsync and Never root!&lt;BR /&gt;&lt;BR /&gt;If this is data that does not have to be in two locations, but used by two or more locations, then NFS is the best choice.  Data can sit on a server, but clients access data as if it were local.  If you are new to HP-UX, SAM does a pretty good job of helping you set up NFS client and server.&lt;BR /&gt;&lt;BR /&gt;Best of luck!</description>
      <pubDate>Thu, 13 Jul 2000 16:16:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/transfer-files-between-two-systems/m-p/2430552#M2854</guid>
      <dc:creator>Shannon Petry</dc:creator>
      <dc:date>2000-07-13T16:16:52Z</dc:date>
    </item>
  </channel>
</rss>

