How To Install jupp on CentOS 7

In this tutorial we learn how to install jupp on CentOS 7. jupp is Compact and feature-rich WordStar-compatible editor

Introduction

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

What is jupp

Jupp is a compact and feature-rich WordStar-compatible editor and also the MirOS fork of the JOE 3.x editor which provides easy conversion for former PC users as well as powerfulness for programmers, while not doing annoying things like word wrap “automagically”. It can double as a hex editor and comes with a character map plus Unicode support. Additionally it contains an extension to visibly display tabs and spaces, has a cleaned up, extended and beautified options menu, more CUA style key-bindings, an improved math functionality and a bracketed paste mode automatically used with Xterm.

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

Install jupp on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install jupp

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

sudo dnf -y install jupp

How To Uninstall jupp on CentOS 7

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

sudo dnf remove jupp

References

Summary

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