Operating System - HP-UX
1757952 Members
2470 Online
108866 Solutions
New Discussion юеВ

rsync 2.6.6 missing library

 
Luis Avendano
Visitor

rsync 2.6.6 missing library

Hi,

I installed rsync on an HP-UX 11i v1 box from

http://hpux.cs.utah.edu/hppd/hpux/Networking/Admin/rsync-2.6.6/

along with run-time dependencies: gettext, libiconv and popt ( to avoid the problems described by others)


However, when I run it fails because ity cannot find "libroken.sl" !!


chatr /usr/local/bin/rsync | head
/usr/local/bin/rsync:
shared executable
shared library dynamic path search:
SHLIB_PATH enabled first
embedded path disabled second Not Defined
shared library list:
dynamic /usr/local/lib/libroken.sl <<=== missing !!
dynamic /usr/local/lib/libpopt.sl
dynamic /usr/lib/libc.2
shared library binding:

I've looked everywhere for this library without success. Does someone know where I may find libroken.sl ?

Any help is much appreciated

Luis
lavendano@csc.com



4 REPLIES 4
baiju_3
Esteemed Contributor

Re: rsync 2.6.6 missing library

Hi,

try this one.

http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?hpweb_printable=true&productNumber=HPUXIEXP1111


thx,
bl.
Good things Just Got better (Plz,not stolen from advertisement -:) )
Geoff Wild
Honored Contributor

Re: rsync 2.6.6 missing library

Instead of rsync, you could use the built in rdist - accomplishes the same thing.

I use it to sync my DR sites...

From root cron:

# Copy prdadm across to the DR site.
05 01 * * * /app/admin/drp/update-binaries.sh >/dev/null 2>&1

# cat /app/admin/drp/update-binaries.sh
#! /bin/sh

# Keep the DRP copy of the prdadm up-to-date.
# Currently the files are in:
#
# /home/prdadm/DR
#
# See the rdist(1M) distfile for a list of exclusions.

DRPDIR=/app/admin/drp
DRPHOST=svr031

HOST=`/usr/bin/uname -n`
PRD=`cmviewcl |grep prddbci |awk '{print $5}'`
if [ "$HOST" = "$PRD" ]
then
mount | grep /home > /dev/null 2>&1
if [ $? -eq 0 ]
then
for vg in `ls -d /dev/vg5* |awk -F/ '{print $3}'`
do
/usr/sbin/vgexport -p -s -v -m /home/prdadm/DR/$vg.map /dev/$vg
done
cp -p /etc/cmcluster/PRDDBCI/prddbci.cntl /home/prdadm/DR/
cp -p /etc/cmcluster/PRDDBCI/prddbci.cntl.full /home/prdadm/DR/
cp -p /etc/cmcluster/PRDDBCI/prddbci.cntl.mountonly /home/prdadm/DR/
( su - prdadm -c "rdist -f $DRPDIR/distfile prdadm"; ) 2>&1 |\
tee $DRPDIR/drp.log 2>&1 |\
mailx -s "prdadm DRP rdist output" me@mydomain.com
fi
fi


# cat /app/admin/drp/distfile
PRDDR = ( svr031 )

#
# File systems to be copied over to the DR host.
# Don't use -R in install - so as not to remove files on destination host
PRDADM = /home/prdadm

prdadm: ( ${PRDADM} ) -> ( ${PRDDR} )
install -w ;


Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.
Luis Avendano
Visitor

Re: rsync 2.6.6 missing library

Thank you Geoff and lalb for your suggestions. I installed rsync from the IneternetExpress bundles, it worked fine. Thanks again lalb.

:) Luis
Luis Avendano
Visitor

Re: rsync 2.6.6 missing library

I installed rsync from the Internet Express
(ver. A.05.00) bundles. It worked fine, thanks again for your help.