HP-UX - custom rsync path
Posted
by
stack_zen
on Server Fault
See other posts from Server Fault
or by stack_zen
Published on 2011-03-10T16:04:54Z
Indexed on
2011/03/10
16:11 UTC
Read the original article
Hit count: 487
Hi.
There are a range of HP-UX 11.11 hosts I'm unable to install rsync (I'm limited to a non-privileged user)
I've extracted both rsync binary and libpopt.sl, libiconv.sl, libintl.sl from the depots into one of that user's directories: /home/zenith/rsync/
Problem is, I can't get my RH Linux box communicating with it:
rsync -e --rsync-path=/home/zenith/rsync/rsync --compress=9 -pgtov --filter=+rs_/'*.log' --exclude='*' [email protected]:/home/zenith/service/logs/ /u01/rsync_depot/service/192.102.14.18/
/usr/lib/dld.sl: Can't find path for shared library: libintl.sl
/usr/lib/dld.sl: No such file or directory
sh: 1644 Abort(coredump)
I've added to the remote host .profile
export SHLIB_PATH=/usr/lib:/home/zenith/rsync
export PATH=$PATH:/home/zenith/rsync
but still, no libintl.sl is found. How can I initialize the correct env variable/ get this to work?
© Server Fault or respective owner