Ok solved it ourself using these steps:
1. Installing the agent using these steps:
https://www.cloudkb.net/how-to-insta...-agent-in-aix/
2. Solving the dependency issue:
# Download dependencies:
# Instal dependencies:
# Merge libiconv files to meet all AIX versions:
# The merge is needed because new GNU applications expect (actually demand) the current GNU logic (as libiconv.a(libiconv.so.2) while most IBM applications (through AIX 7.1 TL3) expect libiconv.a(shr.o) or libiconv.a(shr4.o) or libiconv.a(shr4_64.o)
# Show installed libiconv version:
# Show installed libiconv files:
# Creating backup of existing libiconv:
# Copying new libiconv to /usr/lib:
1. Installing the agent using these steps:
https://www.cloudkb.net/how-to-insta...-agent-in-aix/
2. Solving the dependency issue:
# Download dependencies:
Code:
cd /tmp wget [URL="https://anonymous:[email protected]/aix/freeSoftware/aixtoolbox/RPMS/ppc//gettext/gettext-0.19.8.1-1.aix6.1.ppc.rpm"]https://anonymous:[email protected][/URL] wget [URL="https://anonymous:[email protected]/aix/freeSoftware/aixtoolbox/RPMS/ppc/libffi/libffi-devel-3.2.1-3.aix6.1.ppc.rpm"]https://anonymous:[email protected][/URL] wget [URL="https://anonymous:[email protected]/aix/freeSoftware/aixtoolbox/RPMS/ppc/libiconv/libiconv-1.14-2.aix6.1.ppc.rpm"]https://anonymous:[email protected][/URL]
Code:
rpm -ivh /tmp/gettext-0.19.8.1-1.aix6.1.ppc.rpm --nodeps rpm -ivh /tmp/libffi-devel-3.2.1-3.aix6.1.ppc.rpm --nodeps rpm -ivh /tmp/libiconv-1.14-2.aix6.1.ppc.rpm --nodeps
# The merge is needed because new GNU applications expect (actually demand) the current GNU logic (as libiconv.a(libiconv.so.2) while most IBM applications (through AIX 7.1 TL3) expect libiconv.a(shr.o) or libiconv.a(shr4.o) or libiconv.a(shr4_64.o)
Code:
[COLOR=#27ae60]ar -X32_64 tv /usr/lib/libiconv.a[/COLOR]
Code:
rpm -qa | grep libiconv
Code:
rpm -ql libiconv
Code:
mv /usr/lib/libiconv.a /usr/lib/libiconv.a.OLD
Code:
cp /usr/linux/lib/libiconv.a /usr/lib/
Comment