Link to home
Start Free TrialLog in
Avatar of wfaleiro
wfaleiroFlag for India

asked on

rsync from linux to solaris

Hi,
I am trying to transfer data from a linux machine to a solaris machine. I get the following error while executing rsync command.

[tom@hero ~]$ rsync -az -e ssh --delete ~/test 192.168.0.211:/romeo/tom
ld.so.1: rsync: fatal: libpopt.so.0: open failed: No such file or directory
protocol version mismatch - is your shell clean?
(see the rsync man page for an explanation)
rsync error: protocol incompatibility (code 2) at compat.c(62
Avatar of wesly_chen
wesly_chen
Flag of United States of America image

> libpopt.so.0: open failed: No such file or directory
Make sure you have /usr/lib/libpopt.so.0 in Linux box.
If not, then install "popt" package.
(For Fedora Core Linux, you can use
yum install popt
to install it)
ASKER CERTIFIED SOLUTION
Avatar of wesly_chen
wesly_chen
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of wfaleiro

ASKER

rsync -az --delete ~/tom 192.168.0.211:/romeo/tom
permission denied
rsync: connection unexpectedly closed (0 bytes read so far)
rsync error: error in rsync protocol data stream (code 12) at io.c(165)


 rpm -qa | grep pop
popt-1.8-0.69
I installed popt package on the solaris machine and its working now.