...
To install the entire DualShield Authentication platform or some of its components, download the installation file setupdualshieldxxx.bin in which xxx is the version & build number, e.g. setupdualshield64-6.0.0.0228.bin.
However, the downloaded installation file is not executable, you need to execute command chmod in order to make it executable, e.g.
...
In some editions of Linux OS, you might need to install the following dependencies first.
CentOS - RHEL - Fedora - Rocky Linux
For RPM based Linux, e.g. CentOS, RedHat and Fedora etc
| Code Block | ||||
|---|---|---|---|---|
| ||||
yumsudo dnf install -y perl-Module-Install.noarch libaio fontconfignoarch libaio fontconfig dejavu-sans-fonts dejavu-serif-fonts # or dnf install -y perl-Module-Install.noarch libaio fontconfig dejavu-sans-fonts dejavu-serif-fonts libxcrypt-compat |
Debian - Ubuntu
For Debian based Linux, e.g. Ubuntu:
| Code Block | ||
|---|---|---|
| ||
sudo apt-get update sudo apt-get install libaio1 fonts-dejavu |
Ubuntu 24.04
| Code Block | ||
|---|---|---|
| ||
sudo apt-get update sudo apt-get install libaio-dev fonts-dejavu mecab-ipadic-utf8 sudo ln -s /usr/lib/x86_64-linux-gnu/libaio.so /usr/lib/x86_64-linux-gnu/libaio.so.1 |
Add hostname into the hosts file:
| Code Block | ||||
|---|---|---|---|---|
| ||||
sudo echo "127.0.0.1 $(hostname)" >> /etc/hosts |
...