How To Install terminator on CentOS 7

In this tutorial we learn how to install terminator on CentOS 7. terminator is Store and run multiple GNOME terminals in one window

Introduction

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

What is terminator

Multiple GNOME terminals in one window. This is a project to produce an efficient way of filling a large area of screen space with terminals. This is done by splitting the window into a resizeable grid of terminals. As such, you can produce a very flexible arrangements of terminals for different tasks.

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

Install terminator on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install terminator

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

sudo dnf -y install terminator

How To Uninstall terminator on CentOS 7

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

sudo dnf remove terminator

References

Summary

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