How To Install faketime on Kali Linux
Introduction
In this tutorial we learn how to install faketime on Kali Linux.
What is faketime
faketime is:
The Fake Time Preload Library (FTPL, a.k.a. libfaketime) intercepts various system calls which programs use to retrieve the current date and time. It can then report faked dates and times (as specified by you, the user) to these programs. This means you can modify the system time a program sees without having to change the time system-wide. FTPL allows you to specify both absolute dates (e.g., 2004-01-01) and relative dates (e.g., 10 days ago).
This package contains a “faketime” binary that makes it easy to use the LD_PRELOAD library.
There are three methods to install faketime 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 faketime Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install faketime using apt-get by running the following command:
sudo apt-get -y install faketimeInstall faketime Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install faketime using apt by running the following command:
sudo apt -y install faketimeInstall faketime 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 faketime using aptitude by running the following command:
sudo aptitude -y install faketimeHow To Uninstall faketime on Kali Linux
To uninstall only the faketime package we can use the following command:
sudo apt-get remove faketimeUninstall faketime And Its Dependencies
To uninstall faketime and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove faketimeRemove faketime Configurations and Data
To remove faketime configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge faketimeRemove faketime configuration, data, and all of its dependencies
We can use the following command to remove faketime configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge faketimeDependencies
faketime have the following dependencies:
References
Summary
In this tutorial we learn how to install faketime package on Kali Linux using different package management tools: apt, apt-get and aptitude.