Skip to content

Instantly share code, notes, and snippets.

@LinuxIntellect
Created April 30, 2020 17:47
Show Gist options
  • Save LinuxIntellect/8d7b02b97861269b99cf60b5980b8051 to your computer and use it in GitHub Desktop.
Save LinuxIntellect/8d7b02b97861269b99cf60b5980b8051 to your computer and use it in GitHub Desktop.
Install ntopng service on Ubuntu 18.04 LTS
Youtube: https://www.youtube.com/watch?v=ebsxgJje-jI
# To install the programs in Ubuntu 18.04 open your shell and type:
apt-get install software-properties-common wget
add-apt-repository universe
wget http://apt.ntop.org/18.04/all/apt-ntop.deb
# In order to use this repository, do (as root) the commands below this section, which depend on your Linux distro, then run:
apt-get clean all
apt-get update
apt-get install pfring-dkms nprobe ntopng n2disk cento
# You can (optionally) install the ZC drivers as follows:
apt-get install pfring-drivers-zc-dkms
# You can optionally install the nBox GUI (if avilable for your distro) as follows:
apt-get install nbox
# As every night we build new packages, if you want to keep your system up-to-date, every morning you can do:
apt-get update
apt-get upgrade
# Save and close the file, then restart ntopng and enable it to start on boot time:
sudo systemctl start ntopng
sudo systemctl enable ntopng
sudo service ntopng status
ps aux | grep ntopng
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment