<?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: Shell Script help in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-help/m-p/3009527#M128282</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You could have a look at SD. Use the swpackage command to create a real product which will appear in the swlist output. This way you will know which release is installed on which system. Use preinstall, postintall, chechinstall, etc. scripts  to make all controls. But anyway, bits will be transfered on your network ...&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
    <pubDate>Fri, 27 Jun 2003 06:51:55 GMT</pubDate>
    <dc:creator>Jean-Louis Phelix</dc:creator>
    <dc:date>2003-06-27T06:51:55Z</dc:date>
    <item>
      <title>Shell Script help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-help/m-p/3009526#M128281</link>
      <description>HI,&lt;BR /&gt;&lt;BR /&gt;I have a script attached which installs the SSH modules from a source to a destination directory. The source directory resides on the NIS server, which is already exported to all client machines. &lt;BR /&gt;&lt;BR /&gt;Are there any other better ways which I could copy the respective packages from the source dir without impacting the NIS/NFS traffic?&lt;BR /&gt;&lt;BR /&gt;What the script does is to extract the directory contents via the NFS.&lt;BR /&gt;&lt;BR /&gt;On the other hand, if I were to copy it directly from the NFS area to the local disk i.e. /usr/bin, /usr/sbin and /usr/man, it may also impact the network traffic.   &lt;BR /&gt;&lt;BR /&gt;Hence, could some kindly show me a better way of solving this problem?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 27 Jun 2003 06:46:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-help/m-p/3009526#M128281</guid>
      <dc:creator>Peter Remirez</dc:creator>
      <dc:date>2003-06-27T06:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-help/m-p/3009527#M128282</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You could have a look at SD. Use the swpackage command to create a real product which will appear in the swlist output. This way you will know which release is installed on which system. Use preinstall, postintall, chechinstall, etc. scripts  to make all controls. But anyway, bits will be transfered on your network ...&lt;BR /&gt;&lt;BR /&gt;Regards.</description>
      <pubDate>Fri, 27 Jun 2003 06:51:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-help/m-p/3009527#M128282</guid>
      <dc:creator>Jean-Louis Phelix</dc:creator>
      <dc:date>2003-06-27T06:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-help/m-p/3009528#M128283</link>
      <description>Hi,&lt;BR /&gt;One idea could be copy the source files to destination via ftp, and install it locally.&lt;BR /&gt;&lt;BR /&gt;To do it with a script i use ncftp client because is easier than classical ftp. Take a look in:&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Networking/FTP/ncftp-3.1.4/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Networking/FTP/ncftp-3.1.4/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Frank.</description>
      <pubDate>Fri, 27 Jun 2003 07:18:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-help/m-p/3009528#M128283</guid>
      <dc:creator>Francisco J. Soler</dc:creator>
      <dc:date>2003-06-27T07:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-help/m-p/3009529#M128284</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;To limit traffic a bit, you could do following actions on the server.&lt;BR /&gt;- tar the ./bin, ./sbin and ./man directories in ssh_bin.tar, ssh_sbin.tar and ssh_man.tar&lt;BR /&gt;- compress the files with your favourite compressor gzip, compress, pack,...&lt;BR /&gt;You will now have ssh_bin.tar.gz, ... (if you use gzip f.i.)&lt;BR /&gt;&lt;BR /&gt;- Modify the script a little bit in order to use the compressed tarfiles as input.&lt;BR /&gt;&lt;BR /&gt;something like  &lt;BR /&gt;cd /usr/sbin&lt;BR /&gt;gunzip -c $INSTALL/$VER/ssh_bin.tar.gz | tar xf -&lt;BR /&gt;&lt;BR /&gt;This will reduce the nfs/network traffic depending on the compression ratio.&lt;BR /&gt;&lt;BR /&gt;Joris</description>
      <pubDate>Fri, 27 Jun 2003 11:30:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-help/m-p/3009529#M128284</guid>
      <dc:creator>Joris Denayer</dc:creator>
      <dc:date>2003-06-27T11:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: Shell Script help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-help/m-p/3009530#M128285</link>
      <description>Jean Louis,&lt;BR /&gt;&lt;BR /&gt;Would you mind showing me how I could use the swpackage to create such products in the swlist? &lt;BR /&gt;&lt;BR /&gt;How is this method(together with the postinstall, preinstall and checkinstall going to help me in reducing the network traffic to the local disk?&lt;BR /&gt;&lt;BR /&gt;Could you kindly help me out?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 29 Jun 2003 09:10:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/shell-script-help/m-p/3009530#M128285</guid>
      <dc:creator>Peter Remirez</dc:creator>
      <dc:date>2003-06-29T09:10:50Z</dc:date>
    </item>
  </channel>
</rss>

