Skip to content

Instantly share code, notes, and snippets.

@kngvamxx
Last active November 24, 2020 15:27
Show Gist options
  • Save kngvamxx/4cf1bd06184277e79024dac42047cf9d to your computer and use it in GitHub Desktop.
Save kngvamxx/4cf1bd06184277e79024dac42047cf9d to your computer and use it in GitHub Desktop.
installl ntopng on ubtuntu 18.04lts
sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get install ntopng
sudo systemctl restart ntopng
sudo ntopng -h
sudo ufw enable
sudo ufw allow 3000
firefox http://localhost:3000/
#######To remove the ntopng following command is used:
sudo apt-get remove ntopng
#####3Following command is used to remove the ntopng package along with its dependencies:
sudo apt-get remove --auto-remove ntopng
#####This will remove ntopng and all its dependent packages which is no longer needed in the system.
#####Completely removing ntopng with all configuration files:
####Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge ntopng
####or you can use following command also:
sudo apt-get purge --auto-remove ntopng
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment