How To Install drupal7-panels on CentOS 7

In this tutorial we learn how to install drupal7-panels on CentOS 7. drupal7-panels is Allows a site administrator to create customized layouts

Introduction

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

What is drupal7-panels

The Panels module allows a site administrator to create customized layouts for multiple uses. At its core it is a drag and drop content manager that lets you visually design a layout and place content within that layout. Integration with other systems allows you to create nodes that use this, landing pages that use this, and even override system pages such as taxonomy and the node page so that you can customize the layout of your site with very fine grained permissions. This package provides the following Drupal modules * panels * panels_ipe * panels_mini * panels_node * i18n_panels

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

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

sudo yum -y install drupal7-panels

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

sudo dnf -y install drupal7-panels

How To Uninstall drupal7-panels on CentOS 7

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

sudo dnf remove drupal7-panels

References

Summary

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