<?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 installation script in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930106#M409838</link>
    <description>Hi Pramod,&lt;BR /&gt;&lt;BR /&gt;You can use one of the convenient methods mentioned above. But how your tar archive was created?&lt;BR /&gt;&lt;BR /&gt;It is always good to create tar archives with relative path. When you have to restore a file to other location it can be done easily with such files.&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Devender&lt;BR /&gt;</description>
    <pubDate>Thu, 29 Sep 2005 14:16:59 GMT</pubDate>
    <dc:creator>Devender Khatana</dc:creator>
    <dc:date>2005-09-29T14:16:59Z</dc:date>
    <item>
      <title>Remote installation script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930100#M409832</link>
      <description>Hi !&lt;BR /&gt;&lt;BR /&gt;I want to untar a tar file into a remote machine through a script.&lt;BR /&gt;&lt;BR /&gt;Tar file is in a  directory named /testing in the remote machine and it has to be untared in /usr/local.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance !</description>
      <pubDate>Thu, 29 Sep 2005 05:30:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930100#M409832</guid>
      <dc:creator>PVR</dc:creator>
      <dc:date>2005-09-29T05:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Remote installation script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930101#M409833</link>
      <description>&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=675638" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=675638&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Thu, 29 Sep 2005 05:42:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930101#M409833</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-09-29T05:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Remote installation script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930102#M409834</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;Try to use tar command with ssh.&lt;BR /&gt;&lt;BR /&gt;tar -cf - /some/file | ssh host.name tar -xf - -C /destination</description>
      <pubDate>Thu, 29 Sep 2005 05:54:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930102#M409834</guid>
      <dc:creator>VEL_1</dc:creator>
      <dc:date>2005-09-29T05:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: Remote installation script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930103#M409835</link>
      <description>Use remsh for this...man remsh(1):&lt;BR /&gt;&lt;BR /&gt;# remsh &lt;REMOTEHOST&gt; -n "cd /usr/local; tar xvf /testing/&lt;TARFILE&gt; ."&lt;/TARFILE&gt;&lt;/REMOTEHOST&gt;</description>
      <pubDate>Thu, 29 Sep 2005 06:09:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930103#M409835</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2005-09-29T06:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Remote installation script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930104#M409836</link>
      <description>tar syntax for remote copy is&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;tar -pcvf  - * | remsh server "cd /path ; tar -xvf -"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;BL.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Sep 2005 07:27:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930104#M409836</guid>
      <dc:creator>baiju_3</dc:creator>
      <dc:date>2005-09-29T07:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: Remote installation script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930105#M409837</link>
      <description>Hi PVR,&lt;BR /&gt;&lt;BR /&gt;At local server run the script :&lt;BR /&gt;&lt;BR /&gt;########################################&lt;BR /&gt;# untar tar file into a remote server.&lt;BR /&gt;########################################&lt;BR /&gt;tar -cvf testing.tar /testing&lt;BR /&gt;scp testing.tar remote_svr:/usr/local/&lt;BR /&gt;ssh remote_svr "cd /usr/local ; tar -xvf testing.tar"&lt;BR /&gt;echo " untar done .. pls check remote server /usr/local/testing/ directory "&lt;BR /&gt;&lt;BR /&gt;########################################&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Note: If ssh keygen is set , it can be done without interuption. Else need to provide passowrd as it prompts.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.</description>
      <pubDate>Thu, 29 Sep 2005 08:07:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930105#M409837</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-29T08:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Remote installation script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930106#M409838</link>
      <description>Hi Pramod,&lt;BR /&gt;&lt;BR /&gt;You can use one of the convenient methods mentioned above. But how your tar archive was created?&lt;BR /&gt;&lt;BR /&gt;It is always good to create tar archives with relative path. When you have to restore a file to other location it can be done easily with such files.&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Devender&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Sep 2005 14:16:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930106#M409838</guid>
      <dc:creator>Devender Khatana</dc:creator>
      <dc:date>2005-09-29T14:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Remote installation script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930107#M409839</link>
      <description>thanks to all !!</description>
      <pubDate>Fri, 30 Sep 2005 07:29:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/remote-installation-script/m-p/4930107#M409839</guid>
      <dc:creator>PVR</dc:creator>
      <dc:date>2005-09-30T07:29:34Z</dc:date>
    </item>
  </channel>
</rss>

