How To Install awffull on Kali Linux
Introduction
In this tutorial we learn how to install awffull
on Kali Linux.
What is awffull
awffull is:
AWFFull is a Web server log analysis program, forked from Webalizer. It adds a number of new features and improvements, such as extended frontpage history, resizable graphs, and a few more pie charts.
Webalizer is a great weblog analysis program but hasn’t been going anywhere in recent years. AWFFull takes that base and starts to fix the niggles and annoyances and hopefully become a useful enhancement.
As a base, weblizer has a stated goal of producing web server analysis. AWFFull on the other hand, will gradually focus more on the business intelligence contained within those logs - and not specifically limited just to web server logs.
Major Enhancements vs. Webalizer
The frontpage history can now cover more than 12 months. StyleSheets (CSS) are supported. Customise to your hearts content! The log type can be auto-detected Can process: CLF, Combined, Squid, FTP XFER and Domino v6 Logs All graphs are now resizable, rather than being a fixed size Config File simplification to reduce duplication of common config pairings Bookmarking numbers are tracked. Be aware that these are estimates! Backend changes: Use of PCRE lib and standard library calls to ease coding pain Pattern Matching improvements can increase the speed of a run by 50%. YMMV! 404 Errors are tracked and displayed with both the target and referrering URL Can specify what is a page or what is not.
There are three methods to install awffull
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install awffull Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install awffull
using apt-get
by running the following command:
sudo apt-get -y install awffull
Install awffull Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install awffull
using apt
by running the following command:
sudo apt -y install awffull
Install awffull Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install awffull
using aptitude
by running the following command:
sudo aptitude -y install awffull
How To Uninstall awffull on Kali Linux
To uninstall only the awffull
package we can use the following command:
sudo apt-get remove awffull
Uninstall awffull And Its Dependencies
To uninstall awffull
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove awffull
Remove awffull Configurations and Data
To remove awffull
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge awffull
Remove awffull configuration, data, and all of its dependencies
We can use the following command to remove awffull
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge awffull
Dependencies
awffull have the following dependencies:
References
Summary
In this tutorial we learn how to install awffull
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.