<?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 backup across network using file systems in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575744#M858296</link>
    <description>In an environment of HP9000/712's and B180L's, what would be the quickest and safest way to backup files (maybe across file systems) to one location at another site.  I would like to back up multiple files here in California and send them to Texas in case of a need to restore?  fbackup doesnt seem to want to write to a file system (just tape) across the network.  I already use fbackup to backup to DAT/DDS.&lt;BR /&gt;&lt;BR /&gt;Thanks, Jim</description>
    <pubDate>Wed, 05 Sep 2001 17:45:34 GMT</pubDate>
    <dc:creator>Jim Lewis_8</dc:creator>
    <dc:date>2001-09-05T17:45:34Z</dc:date>
    <item>
      <title>backup across network using file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575744#M858296</link>
      <description>In an environment of HP9000/712's and B180L's, what would be the quickest and safest way to backup files (maybe across file systems) to one location at another site.  I would like to back up multiple files here in California and send them to Texas in case of a need to restore?  fbackup doesnt seem to want to write to a file system (just tape) across the network.  I already use fbackup to backup to DAT/DDS.&lt;BR /&gt;&lt;BR /&gt;Thanks, Jim</description>
      <pubDate>Wed, 05 Sep 2001 17:45:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575744#M858296</guid>
      <dc:creator>Jim Lewis_8</dc:creator>
      <dc:date>2001-09-05T17:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: backup across network using file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575745#M858297</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Actually you can output to stdout with fbackup. Just specify -f -.&lt;BR /&gt;&lt;BR /&gt;I would do something like like:&lt;BR /&gt;fbackup -f - -g graph | compress &amp;gt; myfile&lt;BR /&gt;then rcp or ftp myfile to the remote site&lt;BR /&gt;and&lt;BR /&gt;cat myfile | uncompress | frecover -f -&lt;BR /&gt;&lt;BR /&gt;Regards, Clay&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 17:57:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575745#M858297</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-09-05T17:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: backup across network using file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575746#M858298</link>
      <description>Hi Jim,&lt;BR /&gt;If you want one filesystem copy to another system rdist is faster way to do it.&lt;BR /&gt;&lt;BR /&gt;system to system remte copy.&lt;BR /&gt;&lt;BR /&gt;Sachin</description>
      <pubDate>Wed, 05 Sep 2001 18:04:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575746#M858298</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2001-09-05T18:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: backup across network using file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575747#M858299</link>
      <description>Hi&lt;BR /&gt;Another option is to NFS export ther file system to backup (as read only), then NFS mount it on the remote system.&lt;BR /&gt;&lt;BR /&gt;On the remote - cd into the mount dir :-&lt;BR /&gt;&lt;BR /&gt;find . |cpio -pudvm /&lt;DESTINATON&gt;&lt;BR /&gt;&lt;BR /&gt;Just another option.&lt;BR /&gt;&lt;BR /&gt;Paula&lt;BR /&gt;&lt;BR /&gt;&lt;/DESTINATON&gt;</description>
      <pubDate>Wed, 05 Sep 2001 18:15:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575747#M858299</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2001-09-05T18:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: backup across network using file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575748#M858300</link>
      <description>Remote mounts for backups - ugh!&lt;BR /&gt;&lt;BR /&gt;Try this from the host you want to back up:&lt;BR /&gt;&lt;BR /&gt;mknod /tmp/backup_pipe p         &lt;BR /&gt;chmod a+rw /tmp/backup_pipe&lt;BR /&gt;&lt;BR /&gt;tar -cvf /tmp/backup_pipe .&lt;BR /&gt;&lt;BR /&gt;From the host with the tape drive (or remote host) try this:&lt;BR /&gt;&lt;BR /&gt;remsh host2backup dd if=/tmp/backup_pipe |dd of=/dev/rmt/tapedrivename&lt;BR /&gt;&lt;BR /&gt;works like a champ, and the server backing up the remote server doesn't really need root access, but it does need access to the /tmp/backup_pipe file. Also, you can play with the block size on "dd" to make it more efficient. &lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 18:37:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575748#M858300</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2001-09-05T18:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: backup across network using file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575749#M858301</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;Whatever method you use make sure that you pipe through sort sort of compression to lessen the network component - that is your killer piece of the puzzle.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 18:45:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575749#M858301</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-09-05T18:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: backup across network using file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575750#M858302</link>
      <description>I like the combination of the fbackup to compressed file and the use of dd from the remote site.  I wish there was a way to create the file at the remote site because of disk constraints at the host(backup) site.  Any thoughts on that? Thanks again....</description>
      <pubDate>Wed, 05 Sep 2001 19:53:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575750#M858302</guid>
      <dc:creator>Jim Lewis_8</dc:creator>
      <dc:date>2001-09-05T19:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: backup across network using file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575751#M858303</link>
      <description>Hi Jim,&lt;BR /&gt;&lt;BR /&gt;You would be happy if you can buy "HP OpenView OmniBack II".&lt;BR /&gt;&lt;BR /&gt;from a single ( or multiple ) site(s), you can schedule and monitor backups an really flexible manner. You can backup data locally or even remote to multiple tapes on different nodes ( media pool ).&lt;BR /&gt;&lt;BR /&gt;If needed more info, just post your request !&lt;BR /&gt;&lt;BR /&gt;Magdi</description>
      <pubDate>Wed, 05 Sep 2001 21:18:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575751#M858303</guid>
      <dc:creator>Magdi KAMAL</dc:creator>
      <dc:date>2001-09-05T21:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: backup across network using file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575752#M858304</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Okay this should be close:&lt;BR /&gt;fbackup -f -g graphfile -c configfile - | compress -c - | remsh remotehost uncompress -c - | frecover -c configfile &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Sep 2001 21:49:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575752#M858304</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-09-05T21:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: backup across network using file systems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575753#M858305</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can try this&lt;BR /&gt;&lt;BR /&gt;remsh &lt;REMOTE_BOX&gt; -l &lt;USERID&gt; "tar cvf - &lt;DIR&gt;" | dd of= &lt;LOCAL_TAPE_DEVICE&gt; bs=64k &lt;BR /&gt;&lt;BR /&gt;An equivalent cpio command may also work.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;/LOCAL_TAPE_DEVICE&gt;&lt;/DIR&gt;&lt;/USERID&gt;&lt;/REMOTE_BOX&gt;</description>
      <pubDate>Wed, 05 Sep 2001 22:28:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/backup-across-network-using-file-systems/m-p/2575753#M858305</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2001-09-05T22:28:14Z</dc:date>
    </item>
  </channel>
</rss>

