<?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 backup using tar in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516918#M23006</link>
    <description>Hi,&lt;BR /&gt;the command&lt;BR /&gt;tar cvf server2:/dev/rmt/0m &lt;F&gt; &lt;BR /&gt;does not work (it is possible for fbackup only)&lt;BR /&gt;You can do:&lt;BR /&gt;Server1 = server without tape drive &lt;BR /&gt;Server2 = server with tape drive, requires the .rhost file&lt;BR /&gt;on Server1:&lt;BR /&gt;tar cf - /catalog |remsh Server2 "cat &amp;gt;/dev/rmt/0m" OR&lt;BR /&gt;tar cf - -C /catalog . |remsh Server2 "cat &amp;gt;/dev/rmt/0m" on Server 2:&lt;BR /&gt;remsh Server1 tar cf - /catalog &amp;gt;/dev/rm/0m OR&lt;BR /&gt;remsh Server1 tar cf - -C /catalog . &amp;gt;/dev/rm/0m&lt;BR /&gt;(the second examples - the relative pathnames,&lt;BR /&gt;customize directory to be copied, and tapedrive!)&lt;BR /&gt;good luck,&lt;BR /&gt;Piotr&lt;/F&gt;</description>
    <pubDate>Fri, 13 Apr 2001 19:49:45 GMT</pubDate>
    <dc:creator>Piotr Bronisz</dc:creator>
    <dc:date>2001-04-13T19:49:45Z</dc:date>
    <item>
      <title>Remote backup using tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516912#M23000</link>
      <description>&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;         We are having one d class server and one L-class server. D is working with 10.20 and L with 11.00. I am doing the full back up on D-class server using tar for each and every file systems. I have to take the backup of 8gb more and my dat drive is not functioning now.&lt;BR /&gt;&lt;BR /&gt;My L-class is having a DDS-3 drive. Can i take a backup of my D-class system using the DDS-3 drive of L-class (remote backup) by the utility tar ? If possible please put the command ?&lt;BR /&gt;&lt;BR /&gt;I am using the tar for backup. In this state i cannot use the fbackup and because i am at 90% of my job......&lt;BR /&gt;&lt;BR /&gt;Any help is appreciated.&lt;BR /&gt;amruth&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Apr 2001 12:59:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516912#M23000</guid>
      <dc:creator>Amruth</dc:creator>
      <dc:date>2001-04-13T12:59:06Z</dc:date>
    </item>
    <item>
      <title>Re: Remote backup using tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516913#M23001</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;first edit/create your .rhost file on the other server, so that you have remote access.&lt;BR /&gt;&lt;BR /&gt;tar cv . | remsh server2   dd of=/dev/rmt/0m bs=10k &lt;BR /&gt;&lt;BR /&gt;good luck,&lt;BR /&gt;Thierry.</description>
      <pubDate>Fri, 13 Apr 2001 13:05:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516913#M23001</guid>
      <dc:creator>Thierry Poels_1</dc:creator>
      <dc:date>2001-04-13T13:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Remote backup using tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516914#M23002</link>
      <description>In local:&lt;BR /&gt;#tar cvf backup.tar ./path/*&lt;BR /&gt;#compress backup.tar&lt;BR /&gt;#rcp -p hostname2:/path2/backup.tar.Z|remsh hostname2 -n "cd /path2;tar cv"</description>
      <pubDate>Fri, 13 Apr 2001 13:24:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516914#M23002</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-04-13T13:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Remote backup using tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516915#M23003</link>
      <description>hello Thierry ,&lt;BR /&gt;&lt;BR /&gt;The server2 ,myou are specifying in the command is the server which is not having the backup device.( From your command it is sure but still asking.)&lt;BR /&gt;&lt;BR /&gt;amruth</description>
      <pubDate>Fri, 13 Apr 2001 14:02:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516915#M23003</guid>
      <dc:creator>Amruth</dc:creator>
      <dc:date>2001-04-13T14:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Remote backup using tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516916#M23004</link>
      <description>Ok&lt;BR /&gt;Server1 = server without tape drive&lt;BR /&gt;Server2 = server with tape drive, requires the .rhost file&lt;BR /&gt;&lt;BR /&gt;execute on server1:&lt;BR /&gt;tar cv . | remsh server2 dd of=/dev/rmt/0m bs=10k &lt;BR /&gt;(customize directory to be copied, and tapedrive!)&lt;BR /&gt;&lt;BR /&gt;good luck,&lt;BR /&gt;Thierry.</description>
      <pubDate>Fri, 13 Apr 2001 15:30:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516916#M23004</guid>
      <dc:creator>Thierry Poels_1</dc:creator>
      <dc:date>2001-04-13T15:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Remote backup using tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516917#M23005</link>
      <description>u can also use following&lt;BR /&gt;&lt;BR /&gt;  tar cvf server2:/dev/rmt/0m &lt;F&gt;&lt;BR /&gt;&lt;BR /&gt; You have to execute this on the server which is not having the tape drive.&lt;BR /&gt;&lt;BR /&gt;&lt;/F&gt;</description>
      <pubDate>Fri, 13 Apr 2001 17:53:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516917#M23005</guid>
      <dc:creator>Rajeev Tyagi</dc:creator>
      <dc:date>2001-04-13T17:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Remote backup using tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516918#M23006</link>
      <description>Hi,&lt;BR /&gt;the command&lt;BR /&gt;tar cvf server2:/dev/rmt/0m &lt;F&gt; &lt;BR /&gt;does not work (it is possible for fbackup only)&lt;BR /&gt;You can do:&lt;BR /&gt;Server1 = server without tape drive &lt;BR /&gt;Server2 = server with tape drive, requires the .rhost file&lt;BR /&gt;on Server1:&lt;BR /&gt;tar cf - /catalog |remsh Server2 "cat &amp;gt;/dev/rmt/0m" OR&lt;BR /&gt;tar cf - -C /catalog . |remsh Server2 "cat &amp;gt;/dev/rmt/0m" on Server 2:&lt;BR /&gt;remsh Server1 tar cf - /catalog &amp;gt;/dev/rm/0m OR&lt;BR /&gt;remsh Server1 tar cf - -C /catalog . &amp;gt;/dev/rm/0m&lt;BR /&gt;(the second examples - the relative pathnames,&lt;BR /&gt;customize directory to be copied, and tapedrive!)&lt;BR /&gt;good luck,&lt;BR /&gt;Piotr&lt;/F&gt;</description>
      <pubDate>Fri, 13 Apr 2001 19:49:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516918#M23006</guid>
      <dc:creator>Piotr Bronisz</dc:creator>
      <dc:date>2001-04-13T19:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Remote backup using tar</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516919#M23007</link>
      <description>I've used the following in the past:&lt;BR /&gt;&lt;BR /&gt;tar cvfb - 20 $bu_files | remsh &lt;SERVER_WITH_TAPE_DRIVE&gt; dd of=/dev/rmt/0m obs=20b&lt;BR /&gt;&lt;BR /&gt;Change /dev/rmt/0m if that is not the tape drive device file.&lt;/SERVER_WITH_TAPE_DRIVE&gt;</description>
      <pubDate>Sat, 14 Apr 2001 10:20:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backup-using-tar/m-p/2516919#M23007</guid>
      <dc:creator>Tom Danzig</dc:creator>
      <dc:date>2001-04-14T10:20:06Z</dc:date>
    </item>
  </channel>
</rss>

