How To Install cracklib on CentOS 7

In this tutorial we learn how to install cracklib on CentOS 7. cracklib is A password-checking library

Introduction

In this tutorial we learn how to install cracklib on CentOS 7.

What is cracklib

CrackLib tests passwords to determine whether they match certain security-oriented characteristics, with the purpose of stopping users from choosing passwords that are easy to guess. CrackLib performs several tests on passwords from a username and gecos entry and checks those words against the password; it checks for simplistic patterns in passwords; and it checks for the password in a dictionary. CrackLib is actually a library containing a particular C function which is used to check the password, as well as other C functions. CrackLib is not a replacement for a passwd program; it must be used in conjunction with an existing passwd program. Install the cracklib package if you need a program to check users’ passwords to see if they are at least minimally secure. If you install CrackLib, you will also want to install the cracklib-dicts package.

We can use yum or dnf to install cracklib on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install cracklib.

Install cracklib on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install cracklib using yum by running the following command:

sudo yum -y install cracklib

Install cracklib on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install cracklib using dnf by running the following command:

sudo dnf -y install cracklib

How To Uninstall cracklib on CentOS 7

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

sudo dnf remove cracklib

References

Summary

In this tutorial we learn how to install cracklib on CentOS 7 using yum and dnf.