<?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 rsync in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/rsync/m-p/4936940#M554410</link>
    <description>I get the following error when trying to execute rsync from my HP L2000 server running hpux 11i.&lt;BR /&gt;&lt;BR /&gt;/usr/lib/dld.sl: Can't open shared library: /opt/gnome/lib/libiconv.sl.2&lt;BR /&gt;/usr/lib/dld.sl: No such file or directory&lt;BR /&gt;&lt;BR /&gt;I have all of the libraries in /home/gnome/lib &lt;BR /&gt;&lt;BR /&gt;(-rwxrwxrwx 1 bin bin 745472 Nov 27 2002 libiconv.sl.2)&lt;BR /&gt;&lt;BR /&gt;I have also edited my SHLIB_PATH to look like this in the /etc directory&lt;BR /&gt;/usr/lib:/etc/opt/resmon/lib:/home/gnome/lib:/home/mozilla&lt;BR /&gt;&lt;BR /&gt;Any help would be appreciated.f.org/licenses/gpl.html</description>
    <pubDate>Thu, 27 Oct 2005 09:11:13 GMT</pubDate>
    <dc:creator>keith demingware</dc:creator>
    <dc:date>2005-10-27T09:11:13Z</dc:date>
    <item>
      <title>rsync</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rsync/m-p/4936940#M554410</link>
      <description>I get the following error when trying to execute rsync from my HP L2000 server running hpux 11i.&lt;BR /&gt;&lt;BR /&gt;/usr/lib/dld.sl: Can't open shared library: /opt/gnome/lib/libiconv.sl.2&lt;BR /&gt;/usr/lib/dld.sl: No such file or directory&lt;BR /&gt;&lt;BR /&gt;I have all of the libraries in /home/gnome/lib &lt;BR /&gt;&lt;BR /&gt;(-rwxrwxrwx 1 bin bin 745472 Nov 27 2002 libiconv.sl.2)&lt;BR /&gt;&lt;BR /&gt;I have also edited my SHLIB_PATH to look like this in the /etc directory&lt;BR /&gt;/usr/lib:/etc/opt/resmon/lib:/home/gnome/lib:/home/mozilla&lt;BR /&gt;&lt;BR /&gt;Any help would be appreciated.f.org/licenses/gpl.html</description>
      <pubDate>Thu, 27 Oct 2005 09:11:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rsync/m-p/4936940#M554410</guid>
      <dc:creator>keith demingware</dc:creator>
      <dc:date>2005-10-27T09:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: rsync</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rsync/m-p/4936941#M554411</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Have you installed also the runtime dependencies?&lt;BR /&gt;&lt;BR /&gt;These are available from&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/cgi-bin/search?package=&amp;amp;term=/rsync" target="_blank"&gt;http://hpux.connect.org.uk/hppd/cgi-bin/search?package=&amp;amp;term=/rsync&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Oct 2005 09:15:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rsync/m-p/4936941#M554411</guid>
      <dc:creator>Luk Vandenbussche</dc:creator>
      <dc:date>2005-10-27T09:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: rsync</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rsync/m-p/4936942#M554412</link>
      <description>Or try rdist (old but built into HP-UX).&lt;BR /&gt;&lt;BR /&gt;I use it like so:&lt;BR /&gt;&lt;BR /&gt;Cron:&lt;BR /&gt;# Copy prdadm across to the DR site.&lt;BR /&gt;05 01 * * *     /app/admin/drp/update-binaries.sh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# cat /app/admin/drp/update-binaries.sh&lt;BR /&gt;#! /bin/sh&lt;BR /&gt;&lt;BR /&gt;# Keep the DRP copy of the adm up-to-date.&lt;BR /&gt;# Currently the files are in:&lt;BR /&gt;#&lt;BR /&gt;#       /home/prdadm/DR&lt;BR /&gt;#&lt;BR /&gt;# See the rdist(1M) distfile for a list of exclusions.&lt;BR /&gt;&lt;BR /&gt;DRPDIR=/app/admin/drp&lt;BR /&gt;DRPHOST=svr031&lt;BR /&gt;&lt;BR /&gt;HOST=`/usr/bin/uname -n`&lt;BR /&gt;PRD=`cmviewcl |grep prddbci |awk '{print $5}'`&lt;BR /&gt;if [ "$HOST" = "$PRD" ]&lt;BR /&gt;then&lt;BR /&gt;        mount | grep /home &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;        if [ $? -eq 0 ]&lt;BR /&gt;        then&lt;BR /&gt;                for vg in `ls -d /dev/vg5* |awk -F/ '{print $3}'`&lt;BR /&gt;                do&lt;BR /&gt;                        /usr/sbin/vgexport -p -s -v -m /home/prddm/DR/$vg.map /dev/$vg&lt;BR /&gt;                done&lt;BR /&gt;                cp -p /etc/cmcluster/PRDDBCI/prddbci.cntl /home/prdadm/DR/&lt;BR /&gt;                cp -p /etc/cmcluster/PRDDBCI/prddbci.cntl.full /home/prdadm/DR/&lt;BR /&gt;                cp -p /etc/cmcluster/PRDDBCI/prddbci.cntl.mountonly /home/prdadm/DR/&lt;BR /&gt;                ( su - prdadm -c "rdist -f $DRPDIR/distfile prdadm"; ) 2&amp;gt;&amp;amp;1 |\&lt;BR /&gt;                tee $DRPDIR/drp.log 2&amp;gt;&amp;amp;1 |\&lt;BR /&gt;                mailx -s "prdadm DRP rdist output" gwild@mydomain.com&lt;BR /&gt;        fi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# cat /app/admin/drp/distfile&lt;BR /&gt;PRDDR  = ( svr031 )&lt;BR /&gt;&lt;BR /&gt;#&lt;BR /&gt;# File systems to be copied over to the DR host.&lt;BR /&gt;# Don't use -R in install - so as not to remove files on destination host&lt;BR /&gt;PRDADM   = /home/prdadm&lt;BR /&gt;&lt;BR /&gt;prdadm: ( ${PRDADM} ) -&amp;gt; ( ${PRDDR} )&lt;BR /&gt;        install -w ;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Oct 2005 10:33:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rsync/m-p/4936942#M554412</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2005-10-27T10:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: rsync</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rsync/m-p/4936943#M554413</link>
      <description>Had same problem with the Rsync off HPUX porting web site.  Ended up getting rsync from HP Depot.  Sense then have not had a problem.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h20293.www2.hp.com" target="_blank"&gt;http://h20293.www2.hp.com&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;search for &lt;BR /&gt;&lt;BR /&gt;HP-UX Internet Express for HP-UX 11i v1&lt;BR /&gt;&lt;BR /&gt;Just pick the modules you want.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Oct 2005 10:19:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rsync/m-p/4936943#M554413</guid>
      <dc:creator>J Busch</dc:creator>
      <dc:date>2005-10-28T10:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: rsync</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/rsync/m-p/4936944#M554414</link>
      <description>Thanks for everyones help in regards to my rsync questions.  Your help is greatly appreciated.</description>
      <pubDate>Fri, 28 Oct 2005 10:48:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/rsync/m-p/4936944#M554414</guid>
      <dc:creator>keith demingware</dc:creator>
      <dc:date>2005-10-28T10:48:56Z</dc:date>
    </item>
  </channel>
</rss>

