Monday, June 7, 2010

Installng RSYNC version 3.0.7 on SunOS 5.10 X86.

While installing RSYNC on Solaris 10 X86, I kept getting the following error message. I searched on internet but did not fnd the straight answer hence I am posting this stuff here.

bash-3.00# rsync
bash-3.00# rsyncld.so.1: rsync: fatal: libgcc_s.so.1: open failed: No such file or directoryKilled
Killed

To take care of this error make sure that you have following packages installed on your system using 'pkgadd' command.

1.rsync-3.0.7-sol10-x86-local. 2.libiconv-1.13.1-sol10-x86-loca. 3.libgcc-3.4.6-sol10-x86-local

$gunzip rsync-3.0.7-sol10-x86-local.gz
$pkgadd -d rsync-3.0.7-sol10-x86-local

$gunzip libiconv-1.13.1-sol10-x86-local.gz
$pkgadd -d libiconv-1.13.1-sol10-x86-local

$gunzip libgcc-3.4.6-sol10-x86-local.gz
$pkgadd -d libgcc-3.4.6-sol10-x86-local

-----------------------------------------------------------


The above packages can be obtained from sunfreeware.com.

You can find RSYNC installed in /usr/local/bin/rsync.

bash-3.00# rsync -version
rsync version 3.0.7 protocol version 30

------------------------------------------------------------