How To Install libfaketime on Rocky Linux 8
Introduction
In this tutorial we learn how to install libfaketime
on Rocky Linux 8.
What is libfaketime
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.
We can use yum
or dnf
to install libfaketime
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libfaketime.
Install libfaketime on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install libfaketime
using dnf
by running the following command:
sudo dnf -y install libfaketime
Install libfaketime on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install libfaketime
using yum
by running the following command:
sudo yum -y install libfaketime
How To Uninstall libfaketime on Rocky Linux 8
To uninstall only the libfaketime
package we can use the following command:
sudo dnf remove libfaketime
libfaketime Package Contents on Rocky Linux 8
/usr/bin/faketime
/usr/lib/.build-id
/usr/lib/.build-id/2e
/usr/lib/.build-id/2e/10a455082cc78bee3c8a38430741b165295a81
/usr/lib/.build-id/4c
/usr/lib/.build-id/4c/8877f44cfce9a69e90664b55c517dd5a6c4b07
/usr/lib/.build-id/b0
/usr/lib/.build-id/b0/5cf666d7e6e313c99cdb31da3b96af5ad63818
/usr/lib64/faketime
/usr/lib64/faketime/libfaketime.so.1
/usr/lib64/faketime/libfaketimeMT.so.1
/usr/share/doc/libfaketime
/usr/share/doc/libfaketime/NEWS
/usr/share/doc/libfaketime/README
/usr/share/doc/libfaketime/README.developers
/usr/share/licenses/libfaketime
/usr/share/licenses/libfaketime/COPYING
/usr/share/man/man1/faketime.1.gz
References
Summary
In this tutorial we learn how to install libfaketime
on Rocky Linux 8 using yum and dnf.