...
Login as the superuser ("root") on the host system. Because Sentinel HASP runtime relies on 32-bit compatibility libraries to run on Linux, the 32-bit compatibility libraries must be installed before continuing. If the emulator host has access to a package repository, either local or remote, use the following command:
# yum install glibc.i686
Note Sometimes it is not possible to use an online repository for the installation of 32-bit glibc package. In this case the following procedure should be followed:
1. If you have a Linux distributibe CD-ROM, insert it into CD-ROM drive
1.1. If auto-mount is not enabled, mount the CD-ROM. Example:
# mount /dev/sr0 /mnt 2. If you have an ISO image of the distribution CD, you can mount it using a loopback device:
# mount /path/to/ISO-image.iso /mnt -o loop 3. Switch to the directory containing the packages. This directory depends on your Linux distribution. Example:
# cd /mnt/Packages/
4. Locate the target "glibc.i686" package:
# ls -la glibc-*i686.rpm
5. Install the "glibc.i686" and the packages it depends on. Example:
# rpm -i glibc-2.17-157.el7.i686.rpm nss-softokn-freebl-3.16.2.3-14.4.el7.i686.rpm
6. If the above command reports additional unsatisfied dependencies, add the corresponding packages to the above command line.
7. Umount the CD-ROM or ISO file if necessary:
# umount /mnt Create a directory for the CHARON-AXP distribution, copy the TAR.GZ files there and change to this directory as shown in the following example:
# mkdir /charon_dist
# cp /tmp/charon-axp-4.8-18302.el71.tar.gz /charon_dist
# cd /charon_dist
...
Extract the contents of the distribution TAR.GZ files to the current directory:
# tar -xvzf charon-axp-<VER>-<BN>.<ZZ>.tar.gz
where:
Description
VER
Version of CHARON-AXP product, for example 4.8
BN
Build Number of CHARON-AXP product, for example 18302
VC
68704 - CHARON-AXP product vendor code
ZZ
CHARON-AXP target operating system identifier.
For CentOS 7.x 'ZZ' value is 'el71', for Red Hat Enterprise Linux 7.x the value is 'el71', for Red Hat Enterprise Linux 6.5 to 6.8 the value is 'el65'
Example:
# tar -xvzf
charon-axp-4.8-18302.el71.tar.gz
As a result, the new directory "charon-axp-<VER>-<BN>.<ZZ>" will be created.
...