Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For RPM based Linux, e.g. CentOS, RedHat

1.1 install perl module

Code Block
languagebash
yum install -y perl-Module-Install.noarch


1.2 install libaio 

Code Block
languagebash
yum install -y libaio


For Debian based Linux, e.g. Ubuntu:

1.1 install libaio

Code Block
languagebash
apt-get update
apt-get install libaio1


2. Add FQDN of your DualShield server into the local hosts file:

Replace "dualshield.acme.org" with the actual FQDN of your DualShield server.

Code Block
languagebash
echo "127.0.0.1 dualshield.acme.org" >> /etc/hosts

or,

Code Block
languagebash
echo "127.0.0.1 dualshield.acme.org" | sudo tee -a /etc/hosts

...