<?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: Remote Shell in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502355#M21083</link>
    <description>You can do something like:&lt;BR /&gt;&lt;BR /&gt;tar cvfb - 20 &lt;LIST_OF_FILES&gt; | rsh &lt;REMOTE_HOST_NAME&gt; dd of=/dev/rmt/0m obs=20b&lt;BR /&gt;&lt;BR /&gt;Make sure .rhosts or hosts.equiv is set up for the user doing the backups.&lt;/REMOTE_HOST_NAME&gt;&lt;/LIST_OF_FILES&gt;</description>
    <pubDate>Wed, 07 Mar 2001 17:30:51 GMT</pubDate>
    <dc:creator>Tom Danzig</dc:creator>
    <dc:date>2001-03-07T17:30:51Z</dc:date>
    <item>
      <title>Remote Shell</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502353#M21081</link>
      <description>I think I did this once before but I cannot remember how I did it.  Any help would be appreciated.&lt;BR /&gt;&lt;BR /&gt;System A has a tape drive, system B does not.  How can I back up system B onto the tape drive on System A?  Is that something I can do via remsh?  Many TIA's in advance.&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Wed, 07 Mar 2001 17:13:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502353#M21081</guid>
      <dc:creator>Rob Smith</dc:creator>
      <dc:date>2001-03-07T17:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Shell</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502354#M21082</link>
      <description>I believe the fbackup command supports remotely mounted tape drives.  Check the fbackup man page.</description>
      <pubDate>Wed, 07 Mar 2001 17:28:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502354#M21082</guid>
      <dc:creator>James A. Donovan</dc:creator>
      <dc:date>2001-03-07T17:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Shell</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502355#M21083</link>
      <description>You can do something like:&lt;BR /&gt;&lt;BR /&gt;tar cvfb - 20 &lt;LIST_OF_FILES&gt; | rsh &lt;REMOTE_HOST_NAME&gt; dd of=/dev/rmt/0m obs=20b&lt;BR /&gt;&lt;BR /&gt;Make sure .rhosts or hosts.equiv is set up for the user doing the backups.&lt;/REMOTE_HOST_NAME&gt;&lt;/LIST_OF_FILES&gt;</description>
      <pubDate>Wed, 07 Mar 2001 17:30:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502355#M21083</guid>
      <dc:creator>Tom Danzig</dc:creator>
      <dc:date>2001-03-07T17:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Shell</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502356#M21084</link>
      <description>Or&lt;BR /&gt;use SAM, after permitting access in .rhosts.&lt;BR /&gt;This is creating a remote fbackup.&lt;BR /&gt;Volker</description>
      <pubDate>Wed, 07 Mar 2001 17:38:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502356#M21084</guid>
      <dc:creator>Volker Borowski</dc:creator>
      <dc:date>2001-03-07T17:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Shell</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502357#M21085</link>
      <description>fbackup supports backups over NFS mounts.</description>
      <pubDate>Thu, 08 Mar 2001 18:03:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502357#M21085</guid>
      <dc:creator>Jeffrey S. Sims</dc:creator>
      <dc:date>2001-03-08T18:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Shell</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502358#M21086</link>
      <description>Just another possibility...&lt;BR /&gt;&lt;BR /&gt;You could remotely mount the drive for use:&lt;BR /&gt;&lt;BR /&gt;On system A(server with drive):&lt;BR /&gt;  mount /dev/rmt/0m /tape&lt;BR /&gt;  exportfs -i /tape&lt;BR /&gt;&lt;BR /&gt;On system B(without drive):&lt;BR /&gt;  mkdir /dev/rmt/0m&lt;BR /&gt;  mount xx.yy.zz:/tape /dev/rmt/0m&lt;BR /&gt;&lt;BR /&gt;This would allow you to run any commands on system B that require a tape drive.  &lt;BR /&gt;&lt;BR /&gt;Remember that whenever you use exportfs and are finished using the drive you must umount things in a certain order.&lt;BR /&gt;&lt;BR /&gt;umount /dev/rmt/0m on system B&lt;BR /&gt;run 'exportfs -uav' on system A&lt;BR /&gt;then umount /tape on system A&lt;BR /&gt;&lt;BR /&gt;Haven't tried this, but in theory it should work. :-)  If this won't work, please let me know.  &lt;BR /&gt;&lt;BR /&gt;Good Luck,&lt;BR /&gt;Jason V.</description>
      <pubDate>Thu, 08 Mar 2001 19:35:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502358#M21086</guid>
      <dc:creator>Jason VanDerMark</dc:creator>
      <dc:date>2001-03-08T19:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Remote Shell</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502359#M21087</link>
      <description>NFS is a not very fast on a network at all. Also, you must giveaway root privileges to the machine with the tape drive as the backup program must be able to read every file regardless of permission or ownership.&lt;BR /&gt;&lt;BR /&gt;The remsh/dd/cpio combinations are better but there is nothing in these connections to ensure the data has been transmitted correctly. And restoring files/directories is going to be tricky.&lt;BR /&gt;&lt;BR /&gt;fbackup is designed for network backups and only requires remsh capability.&lt;BR /&gt;&lt;BR /&gt;As with any network backup solution, be very sure you have a plan on how to restore the entire computer, a replacement of the root disk or restoring a few files.  And test it.</description>
      <pubDate>Fri, 09 Mar 2001 04:00:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-shell/m-p/2502359#M21087</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2001-03-09T04:00:52Z</dc:date>
    </item>
  </channel>
</rss>

