Introduction
In this tutorial we learn how to install android-liblog
on Kali Linux.
What is android-liblog
android-liblog is:
liblog represents an interface to the volatile Android Logging system for NDK
(Native) applications and libraries. Interfaces for either writing or reading
logs. The log buffers are divided up in Main, System, Radio and Events
sub-logs.
There are three methods to install android-liblog
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 android-liblog Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install android-liblog
using apt-get
by running the following command:
sudo apt-get -y install android-liblog
Install android-liblog Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install android-liblog
using apt
by running the following command:
sudo apt -y install android-liblog
Install android-liblog 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 android-liblog
using aptitude
by running the following command:
sudo aptitude -y install android-liblog
How To Uninstall android-liblog on Kali Linux
To uninstall only the android-liblog
package we can use the following command:
sudo apt-get remove android-liblog
Uninstall android-liblog And Its Dependencies
To uninstall android-liblog
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove android-liblog
Remove android-liblog Configurations and Data
To remove android-liblog
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge android-liblog
Remove android-liblog configuration, data, and all of its dependencies
We can use the following command to remove android-liblog
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge android-liblog
Dependencies
android-liblog have the following dependencies:
References
Summary
In this tutorial we learn how to install android-liblog
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.