How To Install ne on CentOS 7

In this tutorial we learn how to install ne on CentOS 7. ne is ne, the nice editor

Introduction

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

What is ne

ne is a free (GPL’d) text editor based on the POSIX standard that runs (we hope) on almost every UN*X machine. ne is easy to use for the beginner, but powerful and fully configurable for the wizard, and most sparing in its resource usage.

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

Install ne on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install ne

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

sudo dnf -y install ne

How To Uninstall ne on CentOS 7

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

sudo dnf remove ne

References

Summary

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