<?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: OS backup across network in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803484#M82478</link>
    <description>I use omni back to back up the full os as well as full host over network and Ignite server for bootable image on tape .</description>
    <pubDate>Tue, 10 Sep 2002 19:30:15 GMT</pubDate>
    <dc:creator>Ashwani Kashyap</dc:creator>
    <dc:date>2002-09-10T19:30:15Z</dc:date>
    <item>
      <title>OS backup across network</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803480#M82474</link>
      <description>hey all,&lt;BR /&gt;&lt;BR /&gt;It is possible to do a full OS backup of a server across the network. What I'm getting at is I have a server that we don't have a tape drive for. Any help is greatly appreciated. Points will be assigned.</description>
      <pubDate>Tue, 10 Sep 2002 16:19:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803480#M82474</guid>
      <dc:creator>Ragni Singh</dc:creator>
      <dc:date>2002-09-10T16:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: OS backup across network</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803481#M82475</link>
      <description>You can do it through Ignite UX. Configure an Ignite Server and take the backup of vg00 full through network.&lt;BR /&gt;&lt;BR /&gt;Sandip</description>
      <pubDate>Tue, 10 Sep 2002 16:36:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803481#M82475</guid>
      <dc:creator>Sandip Ghosh</dc:creator>
      <dc:date>2002-09-10T16:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: OS backup across network</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803482#M82476</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You need IgniteUX, which is a great product and it is free.  Here is the link for the download:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=IGNITEUX" target="_blank"&gt;http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=IGNITEUX&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Sep 2002 16:38:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803482#M82476</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2002-09-10T16:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: OS backup across network</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803483#M82477</link>
      <description>I've been backing up my disk drives across networks for quite sometime without any special utilities.&lt;BR /&gt;&lt;BR /&gt;If you have a mount point on your box that you want to backup, I would use fbackup or cpio and simply exclude the mount directory.&lt;BR /&gt;&lt;BR /&gt;Using the automounter, I'd mount the machine for the backup as, say myBackupFS in /net then using cpio exclude /net during the backup.  For example:&lt;BR /&gt;&lt;BR /&gt;cd /&lt;BR /&gt;find . ! -name '/net/*' | cpio -oxmB &amp;gt; /net/myBackupFS/myArchive.cpio&lt;BR /&gt;&lt;BR /&gt;This should backup your entire filesystem, including device files, without going down the backup directory tree.&lt;BR /&gt;&lt;BR /&gt;I hope this helps.  If you need more info, let me know.</description>
      <pubDate>Tue, 10 Sep 2002 18:28:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803483#M82477</guid>
      <dc:creator>Allan Pincus</dc:creator>
      <dc:date>2002-09-10T18:28:09Z</dc:date>
    </item>
    <item>
      <title>Re: OS backup across network</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803484#M82478</link>
      <description>I use omni back to back up the full os as well as full host over network and Ignite server for bootable image on tape .</description>
      <pubDate>Tue, 10 Sep 2002 19:30:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803484#M82478</guid>
      <dc:creator>Ashwani Kashyap</dc:creator>
      <dc:date>2002-09-10T19:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: OS backup across network</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803485#M82479</link>
      <description>Sanjay,&lt;BR /&gt;&lt;BR /&gt;If you want to place the backup on a disk on another machine with enough space, then you can use "tar" to backup your directories.&lt;BR /&gt;&lt;BR /&gt;tar -cf - /* | remsh remotesystemname (cd /backupdir; tar -xf - )&lt;BR /&gt;&lt;BR /&gt;If you have any other requirement than this pls specify.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Sep 2002 19:45:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803485#M82479</guid>
      <dc:creator>Anil Sedha</dc:creator>
      <dc:date>2002-09-10T19:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: OS backup across network</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803486#M82480</link>
      <description>One more point i would like to specify.&lt;BR /&gt;&lt;BR /&gt;You may also backup other directories using their path name as /test /dbms etc&lt;BR /&gt;&lt;BR /&gt;in place of /*</description>
      <pubDate>Tue, 10 Sep 2002 19:53:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803486#M82480</guid>
      <dc:creator>Anil Sedha</dc:creator>
      <dc:date>2002-09-10T19:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: OS backup across network</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803487#M82481</link>
      <description>Sanjay,&lt;BR /&gt;&lt;BR /&gt;Backing up OS files is very well handled by one of the HP's product utility "make_net_recovery" which is a part of Ignite-UX. backing up with tar/cpio will not allow you to recover the system in case you need to rebuild the system from the scratch.&lt;BR /&gt;&lt;BR /&gt;Here is the link to start with :&lt;BR /&gt;&lt;A href="http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90749/B2355-90749_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90749/00/00/14-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90749/00/00/14-toc.html&amp;amp;searchterms=ignite&amp;amp;queryid=20020910-135822" target="_blank"&gt;http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90749/B2355-90749_top.html&amp;amp;con=/hpux/onlinedocs/B2355-90749/00/00/14-con.html&amp;amp;toc=/hpux/onlinedocs/B2355-90749/00/00/14-toc.html&amp;amp;searchterms=ignite&amp;amp;queryid=20020910-135822&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;...Manjeet</description>
      <pubDate>Tue, 10 Sep 2002 19:54:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803487#M82481</guid>
      <dc:creator>Kellogg Unix Team</dc:creator>
      <dc:date>2002-09-10T19:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: OS backup across network</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803488#M82482</link>
      <description>Yet another tool for network backups on HP systems is fbackup.  &lt;BR /&gt;You need to run rmt on the remote HP system with tape device and establish trust from the system backing up to the &lt;BR /&gt;one with the tape drive.&lt;BR /&gt;It's slower that using fbackup with a local tape drive, but it works.  You can recover with frecover as well to the remote system.  Good luck.</description>
      <pubDate>Wed, 11 Sep 2002 05:55:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/os-backup-across-network/m-p/2803488#M82482</guid>
      <dc:creator>Tom Ward_1</dc:creator>
      <dc:date>2002-09-11T05:55:49Z</dc:date>
    </item>
  </channel>
</rss>

