How To Install gfm on CentOS 7

In this tutorial we learn how to install gfm on CentOS 7. gfm is Texas Instruments handheld(s) file manipulation program

Introduction

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

What is gfm

The GFM is an application allowing for the manipulation of single/group/tigroup files from Texas Instruments handhelds. It can create a new file, open an existing file, save file, rename variables, remove variables, create folders, group files into a group/tigroup file, and ungroup a group/tigroup file into single files.

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

Install gfm on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install gfm

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

sudo dnf -y install gfm

How To Uninstall gfm on CentOS 7

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

sudo dnf remove gfm

References

Summary

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