How To Install glogg on Kali Linux
Introduction
In this tutorial we learn how to install glogg on Kali Linux.
What is glogg
glogg is:
glogg is a multi-platform GUI application to browse and search through long or complex log files. It is designed with programmers and system administrators in mind and can be seen as a graphical, interactive combination of grep and less.
Main features include:
- Accept egrep regular expression to search or filter the log.
- Interactively display results of the search in a second, filtered window.
- Colorize the log and the search results.
- Read the file directly from disk, without loading it into memory.
- Happily handle big (>4 GiB) files.
- Read UTF-8 and ISO-8859-1 encoded files.
- Follow a log in real-time as it is written to disk.
- Allow one to insert marks in the logs to interesting lines.
- Support less/vim like keyboard commands to move around the file.
There are three methods to install glogg 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 glogg Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install glogg using apt-get by running the following command:
sudo apt-get -y install gloggInstall glogg Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install glogg using apt by running the following command:
sudo apt -y install gloggInstall glogg 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 updateAfter updating apt database, We can install glogg using aptitude by running the following command:
sudo aptitude -y install gloggHow To Uninstall glogg on Kali Linux
To uninstall only the glogg package we can use the following command:
sudo apt-get remove gloggUninstall glogg And Its Dependencies
To uninstall glogg and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove gloggRemove glogg Configurations and Data
To remove glogg configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge gloggRemove glogg configuration, data, and all of its dependencies
We can use the following command to remove glogg configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge gloggDependencies
glogg have the following dependencies:
- libboost-program-options1.74.0
- libc6
- libgcc-s1
- libqt5core5a
- libqt5dbus5
- libqt5gui5
- libqt5widgets5
- libstdc++6
References
Summary
In this tutorial we learn how to install glogg package on Kali Linux using different package management tools: apt, apt-get and aptitude.