How To Install drupal7-module_filter on CentOS 7

In this tutorial we learn how to install drupal7-module_filter on CentOS 7. drupal7-module_filter is Module filter gives the ability to quickly find the module

Introduction

In this tutorial we learn how to install drupal7-module_filter on CentOS 7.

What is drupal7-module_filter

The modules list page can become quite big when dealing with a fairly large site or even just a dev site meant for testing new and various modules being considered. What this module aims to accomplish is the ability to quickly find the module you are looking for without having to rely on the browsers search feature which more times than not shows you the module name in the ‘Required by’ or ‘Depends on’ sections of the various modules or even some other location on the page like a menu item. This package provides the following Drupal module(s) * module_filter

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

Install drupal7-module_filter on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install drupal7-module_filter using yum by running the following command:

sudo yum -y install drupal7-module_filter

Install drupal7-module_filter 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 drupal7-module_filter using dnf by running the following command:

sudo dnf -y install drupal7-module_filter

How To Uninstall drupal7-module_filter on CentOS 7

To uninstall only the drupal7-module_filter package we can use the following command:

sudo dnf remove drupal7-module_filter

References

Summary

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