Install Smokeping on RaspbianOS

# Update package list

sudo apt update
sudo apt upgrade -y
Copy
# Upgrade installed packages

sudo apt upgrade -y
Copy
# Install different packages
sudo apt install -y apache2 fping librrds-perl libsmokeping-perl libwww-perl curl libjson-perl libipc-shareable-perl libsocket6-perl libio-socket-ssl-perl libnet-ldap-perl libnet-dns-perl
Copy
# Install SmokePing
sudo apt install -y smokeping
Copy
# TEST IF THIS IS NEEDED:
sudo ln -s /usr/share/smokeping/www /var/www/smokeping
Copy
# TEST IF THIS IS NEEDED:
sudo a2enmod cgid
sudo a2enmod headers
Copy
# Restart Apache
sudo systemctl restart apache2
Copy
# Edit the Owner name
sudo nano /etc/smokeping/config.d/General

#uncomment the ****FPING*** section
sudo nano /etc/smokeping/config.d/Probes

# Configure targets in Smokeping
sudo nano /etc/smokeping/config.d/Targets

# Restart Smokeping
sudo systemctl restart smokeping
Copy