<?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 how to backup to a remote tape? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645809#M44813</link>
    <description>Hi, &lt;BR /&gt;   (my system is b2000 with 11.0)&lt;BR /&gt;   I want to backup the system to a tape on a remote sun box. when use rdump, or sam to do this , It failed.&lt;BR /&gt;    how to do this job.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Sunny&lt;BR /&gt;</description>
    <pubDate>Wed, 16 Jan 2002 03:49:24 GMT</pubDate>
    <dc:creator>faust2004</dc:creator>
    <dc:date>2002-01-16T03:49:24Z</dc:date>
    <item>
      <title>how to backup to a remote tape?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645809#M44813</link>
      <description>Hi, &lt;BR /&gt;   (my system is b2000 with 11.0)&lt;BR /&gt;   I want to backup the system to a tape on a remote sun box. when use rdump, or sam to do this , It failed.&lt;BR /&gt;    how to do this job.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Sunny&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Jan 2002 03:49:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645809#M44813</guid>
      <dc:creator>faust2004</dc:creator>
      <dc:date>2002-01-16T03:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to backup to a remote tape?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645810#M44814</link>
      <description>Sorry, you are not going to find those commands on HP-UX. HP's answer is to use fbackup which will talk to remote tape drives but it is HP only. You now will need to look at doing it yourself using remsh.&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;find . -print | cpio -ocBv | remsh sunhost dd ibs=5k obs=1000k of=/dev/tape&lt;BR /&gt;&lt;BR /&gt;If you are going over a slow network you may want to add compress/uncompress to your pipeline. You could also use tar or fbackup as your front-end command.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Jan 2002 04:06:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645810#M44814</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-01-16T04:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: how to backup to a remote tape?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645811#M44815</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Using tar&lt;BR /&gt;# tar cvf - /dir_name | remsh hostname dd of=/dev/rmt/0m&lt;BR /&gt;or&lt;BR /&gt;# remsh &lt;HOSTNAME&gt; "dd if=/dev/rmt/0m bs=10k" | tar xvf - &lt;BR /&gt;&lt;BR /&gt;Using cpio&lt;BR /&gt;&lt;BR /&gt;# find . -depth -xdev | cpio -ovxcB 2&amp;gt;/tmp/err.cpio |remsh hostwithtapedrive -l user "cat - | dd of=/dev/rmt/0m obs=5k" &lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;-Michael&lt;/HOSTNAME&gt;</description>
      <pubDate>Wed, 16 Jan 2002 04:07:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645811#M44815</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-01-16T04:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to backup to a remote tape?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645812#M44816</link>
      <description>Hi again:&lt;BR /&gt;&lt;BR /&gt;I suppose I should mention one much faster though not free alternative. You might look into Omniback. You can install it as a 60-day trial. It will allow you to backup many flavors of UNIX, Windows, Novell, and others to tape drives located essentially anywhere on the network.&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Jan 2002 04:11:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645812#M44816</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-01-16T04:11:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to backup to a remote tape?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645813#M44817</link>
      <description>Hi Sunny,&lt;BR /&gt;&lt;BR /&gt;I believe you should be able to use rdump to backup to your Sun's tape drive.  I have done the reverse (ufsdump to a HPUX box) and extracted files (restore) there.  You have to set up the "r" security stuff (.rhosts, etc) for this to work.&lt;BR /&gt;&lt;BR /&gt;What was your error?&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Wed, 16 Jan 2002 14:36:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645813#M44817</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-01-16T14:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: how to backup to a remote tape?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645814#M44818</link>
      <description>A. Clay wrote:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Sorry, you are not going to find those commands on HP-UX.&lt;BR /&gt;&lt;BR /&gt;Which commands? The Question Author mentioned rdump and sam and, AFAIK :-), those *are* on HP-UX.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; HP's answer is to use fbackup which will talk to remote tape drives but it is HP only.&lt;BR /&gt;&lt;BR /&gt;If by "it is HP only" you mean that fbackup *itself* is HP only and must run on HP-UX, then that is true. But fbackup can make *remote backup* (which is asked here) to a tape drive on a non-HP-UX system, provided that system has the Berkeley standard rmt(1M). For details see the comments on rmt in the fbackup(1M) manual page.</description>
      <pubDate>Thu, 17 Jan 2002 13:08:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645814#M44818</guid>
      <dc:creator>Frank Slootweg</dc:creator>
      <dc:date>2002-01-17T13:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: how to backup to a remote tape?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645815#M44819</link>
      <description>Sunny,&lt;BR /&gt;&lt;BR /&gt;get Gnu's tar, it'll do remote tape writes. It will also handle LARGE files.&lt;BR /&gt;&lt;BR /&gt;for hp:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/hppd/hpux/Gnu/tar-1.13.25/" target="_blank"&gt;http://hpux.cs.utah.edu/hppd/hpux/Gnu/tar-1.13.25/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;for sun:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://sunsite.ics.forth.gr/sunsite/gnu/tar/" target="_blank"&gt;http://sunsite.ics.forth.gr/sunsite/gnu/tar/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;or better yet (where you select your Solaris OS revision):&lt;BR /&gt;&lt;A href="http://www.sunfreeware.com/" target="_blank"&gt;http://www.sunfreeware.com/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Thu, 17 Jan 2002 13:24:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645815#M44819</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-01-17T13:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: how to backup to a remote tape?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645816#M44820</link>
      <description>Frank&lt;BR /&gt;&lt;BR /&gt;The unwritten etiquette on the forum is not to criticise nor directly correct another forum members answer to a question, but to answer the question posed.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Paula&lt;BR /&gt;</description>
      <pubDate>Thu, 17 Jan 2002 17:48:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-backup-to-a-remote-tape/m-p/2645816#M44820</guid>
      <dc:creator>Paula J Frazer-Campbell</dc:creator>
      <dc:date>2002-01-17T17:48:27Z</dc:date>
    </item>
  </channel>
</rss>

