Learn how to install ntop with the command sudo apt-get install ntop on Ubuntus.
Ads
Quick installation of ntop:
Step 1: Update system:
sudo apt-get update
Step 2: Install: ntop
Ater updaing the OS run following command to install the packae:
sudo apt-get install ntop
Package Details | |
Package: | ntop |
Version: | 3:4.1.0+dfsg1-1 |
Maintainer: | Ubuntu Developers |
Home page: | http://www.ntop.org/ |
Description: | display network usage in web browser ntop is a network traffic probe that shows the network usage, similar to what the popular top Unix command does. ntop is based on libpcap and it has been written in a portable way in order to virtually run on every Unix platform and on Win32 as well. . ntop users can use a web browser to navigate through ntop (that acts as a web server) traffic information and get a dump of the network status. In the latter case, ntop can be seen as a simple RMON-like agent with an embedded web interface. The use of: * a web interface * limited configuration and administration via the web interface * reduced CPU and memory usage (they vary according to network size and traffic) make ntop easy to use and suitable for monitoring various kind of networks. . This package contains the ntop daemon. Homepage: http://www.ntop.org/ |
Distro: | Ubuntu 12.04 LTS |
Release: | |
Repo/Section: | universe/net |
First of all update your system with the command:
sudo apt-get update
Ads
Above command will download the package lists for Ubuntu 12.04 LTS on your system. This will update the list of newest versions of packages and its dependencies on your system.
After downloading the latest package list with the help of above you can run the installation process.
If ntop is not installed on your compter then the command 'dpkg -L ntop' will give followin error.
deepak@deepak-VirtualBox:~$ dpkg -L ntop Package `ntop' is not installed. Use dpkg --info (= dpkg-deb --info) to examine archive files, and dpkg --contents (= dpkg-deb --contents) to list their contents. deepak@deepak-VirtualBox:~$
Installing ntop:
After system update use the following command to install ntop:
sudo apt-get install ntop
Above command will confirm before installing the package on your Ubuntu 12.04 LTS Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.
Now we will see the commands for uninstalling the ntop from Ubuntu 12.04 LTS. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.
To remove the ntop following command is used:
sudo apt-get remove ntop
Following command is used to remove the ntop package along with its dependencies:
sudo apt-get remove --auto-remove ntop
This will remove ntop and all its dependent packages which is no longer needed in the system.
Completely removing ntop with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge ntop
or you can use following command also:
sudo apt-get purge --auto-remove ntop
Above command will remove all the configuration files and data associated with ntop package. You can can't recover the delete data, so, use this command with care.