...
For RPM based Linux, e.g. CentOS, RedHat
1.1 install perl module
| Code Block | ||
|---|---|---|
| ||
yum install -y perl-Module-Install.noarch |
1.2 install libaio
| Code Block | ||
|---|---|---|
| ||
yum install -y libaio |
For Debian based Linux, e.g. Ubuntu:
1.1 install libaio
| Code Block | ||
|---|---|---|
| ||
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 | ||
|---|---|---|
| ||
echo "127.0.0.1 dualshield.acme.org" >> /etc/hosts |
or,
| Code Block | ||
|---|---|---|
| ||
echo "127.0.0.1 dualshield.acme.org" | sudo tee -a /etc/hosts |
...