We currently have two ways to use Smokeping with LibreNMS, the first is using the included script generator to generate the config for Smokeping. The
second is to utilise an existing Smokeping setup.
### Included Smokeping script
To use this, please add something similar to your smokeping config file:
```bash
@include /opt/smokeping/etc/librenms.conf
```
Then you need to generate the config file (maybe even add a cron to schedule this in and reload smokeping). We've assumed a few locations for smokeping, the config file you want
This is quite simple, just point your dir at the smokeping data directory - please be aware that all RRD files need to be within this dir and NOT sub dirs:
> This guide assumes you have already <a href="http://docs.librenms.org/Installation/Installation-(Debian-Ubuntu)/">installed librenms</a>, and you installed apache2 in the process. Tested with Ubuntu 14.04 and Apache 2.4.
Nearly everything we do will require root, and at one point we'll encounter a problem if we just use sudo, so we'll just switch to root at the beginning...
```bash
sudo su -
```
### Install Smokeping ###
```bash
apt-get install smokeping
```
At the end of installation, you may have gotten this error: `ERROR: /etc/smokeping/config.d/pathnames, line 1: File '/usr/sbin/sendmail' does not exist`
If so, just edit smokeping's pathnames.
```bash
nano /etc/smokeping/config.d/pathnames
```
Comment out the first line:
```bash
#sendmail = /usr/sbin/sendmail
```
Exit and save.
Check if the smokeping config file was created for apache2:
```bash
ls /etc/apache2/conf-available/
```
If you don't see `smokeping.conf` listed, you'll need to create a symlink for it: