How To Install libfaketime on AlmaLinux 8

In this tutorial we learn how to install libfaketime in AlmaLinux 8. libfaketime is Manipulate system time per process for testing purposes

Introduction

In this tutorial we learn how to install libfaketime on AlmaLinux 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 AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install libfaketime.

Install libfaketime on AlmaLinux 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 AlmaLinux 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 AlmaLinux 8

To uninstall only the libfaketime package we can use the following command:

sudo dnf remove libfaketime

References

Summary

In this tutorial we learn how to install libfaketime on AlmaLinux 8 using yum and dnf.