How To Install jupp on Rocky Linux 8
Introduction
In this tutorial we learn how to install jupp
on Rocky Linux 8.
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 Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install jupp.
Install jupp on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install jupp
using dnf
by running the following command:
sudo dnf -y install jupp
Install jupp on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install jupp
using yum
by running the following command:
sudo yum -y install jupp
How To Uninstall jupp on Rocky Linux 8
To uninstall only the jupp
package we can use the following command:
sudo dnf remove jupp
jupp Package Contents on Rocky Linux 8
/etc/jupp
/etc/jupp/charmaps
/etc/jupp/charmaps/klingon
/etc/jupp/jupprc
/etc/jupp/syntax
/etc/jupp/syntax/asm.jsf
/etc/jupp/syntax/c.jsf
/etc/jupp/syntax/conf.jsf
/etc/jupp/syntax/csh.jsf
/etc/jupp/syntax/diff.jsf
/etc/jupp/syntax/fortran.jsf
/etc/jupp/syntax/html.jsf
/etc/jupp/syntax/java.jsf
/etc/jupp/syntax/lisp.jsf
/etc/jupp/syntax/mail.jsf
/etc/jupp/syntax/mason.jsf
/etc/jupp/syntax/pascal.jsf
/etc/jupp/syntax/perl.jsf
/etc/jupp/syntax/php.jsf
/etc/jupp/syntax/python.jsf
/etc/jupp/syntax/sh.jsf
/etc/jupp/syntax/tcl.jsf
/etc/jupp/syntax/tex.jsf
/etc/jupp/syntax/verilog.jsf
/etc/jupp/syntax/vhdl.jsf
/etc/jupp/syntax/xml.jsf
/usr/bin/jupp
/usr/lib/.build-id
/usr/lib/.build-id/40
/usr/lib/.build-id/40/8acb6565d619ca0719ecdad980e1e7bc4355b7
/usr/share/doc/jupp
/usr/share/doc/jupp/HINTS
/usr/share/doc/jupp/INFO
/usr/share/doc/jupp/LIST
/usr/share/doc/jupp/NEWS
/usr/share/doc/jupp/README
/usr/share/licenses/jupp
/usr/share/licenses/jupp/COPYING
/usr/share/man/man1/jupp.1.gz
References
Summary
In this tutorial we learn how to install jupp
on Rocky Linux 8 using yum and dnf.