<?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 backups using tar in shell script in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658548#M47698</link>
    <description>Save yourself a lot of headaches, and download Gnu's tar from the HP porting site:&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;it allows you to not only save files &amp;gt; 2gb, but also allows you to write to remote tape drives.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
    <pubDate>Tue, 05 Feb 2002 02:23:42 GMT</pubDate>
    <dc:creator>harry d brown jr</dc:creator>
    <dc:date>2002-02-05T02:23:42Z</dc:date>
    <item>
      <title>remote backups using tar in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658546#M47696</link>
      <description>Hello All;&lt;BR /&gt;&lt;BR /&gt;I have 2 hp servers, one with tape drive and one with a bad tape drive (support has expired).  I have to use tar to do the backup.  When I use the following command &lt;BR /&gt;&lt;BR /&gt;tar cvf - /home | remsh rmt_host dd of=/dev/rmt/0m&lt;BR /&gt;it works.  If I put this command in a shell script i get the &lt;BR /&gt;tape not loaded error.&lt;BR /&gt;&lt;BR /&gt;I think it is looking locally for the tape.  How can I make it in the shell script to look at the remote host for the tape drive?  I have .rhost file fine.&lt;BR /&gt;&lt;BR /&gt;I thank you all for taking the time to respond</description>
      <pubDate>Mon, 04 Feb 2002 22:01:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658546#M47696</guid>
      <dc:creator>Amir Fadaghi</dc:creator>
      <dc:date>2002-02-04T22:01:42Z</dc:date>
    </item>
    <item>
      <title>Re: remote backups using tar in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658547#M47697</link>
      <description>The command that I'm using which works for me ..&lt;BR /&gt;&lt;BR /&gt;# tar cvf - /home | remsh rmt_host "cat - | dd of=/dev/rmt/0m bs=10k"&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Feb 2002 22:17:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658547#M47697</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-02-04T22:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: remote backups using tar in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658548#M47698</link>
      <description>Save yourself a lot of headaches, and download Gnu's tar from the HP porting site:&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;it allows you to not only save files &amp;gt; 2gb, but also allows you to write to remote tape drives.&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Tue, 05 Feb 2002 02:23:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658548#M47698</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-02-05T02:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: remote backups using tar in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658549#M47699</link>
      <description>Well, what shell have you defined in your shell script? sh or ksh or others? If not, try to define the sh or ksh in your script at the top by #!/usr/bin/ksh or #!/usr/bin/sh&lt;BR /&gt;&lt;BR /&gt;On the other hand, try to add -n option in the remsh, ie. &lt;BR /&gt;&lt;BR /&gt;tar cvf - /home | remsh rmt_host -n dd of=/dev/rmt/0m &lt;BR /&gt;&lt;BR /&gt;to see if it works.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;Kenny.</description>
      <pubDate>Tue, 05 Feb 2002 03:48:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658549#M47699</guid>
      <dc:creator>Kenny Chau</dc:creator>
      <dc:date>2002-02-05T03:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: remote backups using tar in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658550#M47700</link>
      <description>Hi Harry,&lt;BR /&gt;I was trying to install GNU tar but is says&lt;BR /&gt;dependecies not found.&lt;BR /&gt;Any idea? &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; * Target:           ctxdbdr:/                                     &lt;BR /&gt;  * Target logfile:   ctxdbdr:/var/adm/sw/swagent.log               &lt;BR /&gt;  * Reading source for product information.                         &lt;BR /&gt;  * Reading source for file information.                            &lt;BR /&gt;    The corequisite "gettext.gettext-RUN" for fileset               &lt;BR /&gt;    "tar.tar-RUN,r=1.13.25" cannot be successfully resolved.        &lt;BR /&gt;    The corequisite "libiconv.libiconv-RUN" for fileset             &lt;BR /&gt;    "tar.tar-RUN,r=1.13.25" cannot be successfully resolved.        &lt;BR /&gt;:   The dependencies for fileset "tar.tar-RUN,r=1.13.25" cannot be  &lt;BR /&gt;    resolved (see previous lines).                                  &lt;BR /&gt;    You must resolve the above dependencies before operating on     &lt;BR /&gt;    this fileset or change the "enforce_dependencies" option to     &lt;BR /&gt;    "false".</description>
      <pubDate>Tue, 05 Feb 2002 06:41:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658550#M47700</guid>
      <dc:creator>Animesh Chakraborty</dc:creator>
      <dc:date>2002-02-05T06:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: remote backups using tar in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658551#M47701</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Both these dependencies may be found at the porting sites, e.g.:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk" target="_blank"&gt;http://hpux.connect.org.uk&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;They are listed as dependencies on the Gnu-tar download page.&lt;BR /&gt;&lt;BR /&gt;Rgds, Robin.</description>
      <pubDate>Tue, 05 Feb 2002 08:14:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658551#M47701</guid>
      <dc:creator>Robin Wakefield</dc:creator>
      <dc:date>2002-02-05T08:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: remote backups using tar in shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658552#M47702</link>
      <description>All thank you very much for help for giving me ideas.  Since, the project is not due until 2 months I think I will wait till the owner wants to deal with this issue more constructively.</description>
      <pubDate>Tue, 05 Feb 2002 16:58:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-backups-using-tar-in-shell-script/m-p/2658552#M47702</guid>
      <dc:creator>Amir Fadaghi</dc:creator>
      <dc:date>2002-02-05T16:58:58Z</dc:date>
    </item>
  </channel>
</rss>

