<?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 tar network data in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-network-data/m-p/3042091#M134528</link>
    <description>How do backup host A /data/* to host B tape drive by use tar command? &lt;BR /&gt;Assume B has connect a TAPE drive.</description>
    <pubDate>Wed, 06 Aug 2003 00:24:02 GMT</pubDate>
    <dc:creator>j773303</dc:creator>
    <dc:date>2003-08-06T00:24:02Z</dc:date>
    <item>
      <title>tar network data</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-network-data/m-p/3042091#M134528</link>
      <description>How do backup host A /data/* to host B tape drive by use tar command? &lt;BR /&gt;Assume B has connect a TAPE drive.</description>
      <pubDate>Wed, 06 Aug 2003 00:24:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-network-data/m-p/3042091#M134528</guid>
      <dc:creator>j773303</dc:creator>
      <dc:date>2003-08-06T00:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: tar network data</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-network-data/m-p/3042092#M134529</link>
      <description>1) You can't write directly to the tape drive on host B.  &lt;BR /&gt;&lt;BR /&gt;Few ways to get the data over there.&lt;BR /&gt;&lt;BR /&gt;If host be is running nfs, you can mount a folder where you'd have read/write capabilities.  Lets call it /tmp/tar&lt;BR /&gt;&lt;BR /&gt;mount hostb://tmp/tar /hostb&lt;BR /&gt;&lt;BR /&gt;A folder in root named /hostb must exist.&lt;BR /&gt;&lt;BR /&gt;then &lt;BR /&gt;&lt;BR /&gt;tar xvf /hostb/file.tar *&lt;BR /&gt;&lt;BR /&gt;Alternative:&lt;BR /&gt;&lt;BR /&gt;tar xvf /tmp/file.tar&lt;BR /&gt;&lt;BR /&gt;scp -p /tmp/file.tar hostb://tmp/tar&lt;BR /&gt;&lt;BR /&gt;rcp will also work if you are using it.&lt;BR /&gt;scp requires Secure Shell and public keys exchanged to work without a password change.&lt;BR /&gt;&lt;BR /&gt;Let me know if you need more detail.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 06 Aug 2003 00:27:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-network-data/m-p/3042092#M134529</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-08-06T00:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: tar network data</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-network-data/m-p/3042093#M134530</link>
      <description>Note corrections to my original post.&lt;BR /&gt;&lt;BR /&gt;1) You can't write directly to the tape drive on host B.  &lt;BR /&gt;&lt;BR /&gt;Few ways to get the data over there.&lt;BR /&gt;&lt;BR /&gt;If host be is running nfs, you can mount a folder where you'd have read/write capabilities.  Lets call it /tmp/tar&lt;BR /&gt;&lt;BR /&gt;mount hostb://tmp/tar /hostb&lt;BR /&gt;&lt;BR /&gt;A folder in root named /hostb must exist.&lt;BR /&gt;&lt;BR /&gt;then &lt;BR /&gt;&lt;BR /&gt;tar cvf /hostb/file.tar *&lt;BR /&gt;&lt;BR /&gt;Alternative:&lt;BR /&gt;&lt;BR /&gt;tar cvf /tmp/file.tar&lt;BR /&gt;&lt;BR /&gt;scp -p /tmp/file.tar hostb://tmp/tar&lt;BR /&gt;&lt;BR /&gt;rcp will also work if you are using it.&lt;BR /&gt;scp requires Secure Shell and public keys exchanged to work without a password change.&lt;BR /&gt;&lt;BR /&gt;Let me know if you need more detail.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;&lt;BR /&gt;Apologies for the pea brain molecule(brain) freeze.</description>
      <pubDate>Wed, 06 Aug 2003 00:28:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-network-data/m-p/3042093#M134530</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-08-06T00:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: tar network data</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-network-data/m-p/3042094#M134531</link>
      <description>Try these:&lt;BR /&gt;&lt;BR /&gt;# tar cvf - /data/* | remsh hostname dd of=/dev/rmt/0m &lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt; &lt;BR /&gt;# cd /data&lt;BR /&gt;# tar cvf - . | remsh hostname dd of=/dev/rmt/0m &lt;BR /&gt;&lt;BR /&gt;which will backup the current directory. &lt;BR /&gt;    &lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;# remsh hostname "dd if=/dev/rmt/0m bs=10k" | tar xvf - &lt;BR /&gt;&lt;BR /&gt;'hostname' is the hostname of the machine with the tape drive.    &lt;BR /&gt;</description>
      <pubDate>Wed, 06 Aug 2003 00:33:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-network-data/m-p/3042094#M134531</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2003-08-06T00:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: tar network data</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/tar-network-data/m-p/3042095#M134532</link>
      <description>Hi ,&lt;BR /&gt;   fbackup allow you to do a this kind of backup.&lt;BR /&gt;&lt;BR /&gt;Here are the bit of man pages on fbackup option -f :&lt;BR /&gt;&lt;BR /&gt;                     There is slightly different behavior if remote devices&lt;BR /&gt;                     are used.  A device on the remote machine can be&lt;BR /&gt;                     specified in the form machine:device.  fbackup creates&lt;BR /&gt;                     a server process from /usr/sbin/rmt on the remote&lt;BR /&gt;                     machine to access the tape device.  If /usr/sbin/rmt&lt;BR /&gt;                     does not exist on the remote system, fbackup creates a&lt;BR /&gt;                     server process from /etc/rmt on the remote machine to&lt;BR /&gt;                     access the tape device.  Only magnetic tapes can be&lt;BR /&gt;                     remote devices.  When remote DDS tape devices are used,&lt;BR /&gt;                     the fast search marks capability is not used.&lt;BR /&gt;&lt;BR /&gt;I done it a couple of years ago and if i was not mistaken you need to setup the rhost only.&lt;BR /&gt;If my pee-wee brain remember correctly.&lt;BR /&gt;&lt;BR /&gt;Hope this help.&lt;BR /&gt;&lt;BR /&gt;regards &lt;BR /&gt;mB&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Aug 2003 00:33:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/tar-network-data/m-p/3042095#M134532</guid>
      <dc:creator>malay boy</dc:creator>
      <dc:date>2003-08-06T00:33:45Z</dc:date>
    </item>
  </channel>
</rss>

