jupp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
jupp: command not found
or when using sudo you get the following error message
sudo: jupp: command not found
Solutions to jupp: command not found
How To Fix jupp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu jupp is provided by jupp package.
jupp is:
JOE, the Joe’s Own Editor, has the feel of most PC text editors: the key sequences are reminiscent of WordStar and Turbo C editors, but the feature set is much larger than of those. JOE has all of the features a Unix user should expect: full use of termcap/terminfo, complete vi-style Unix integration, a powerful configuration file and a regular expression search system. It also has eight help reference cards which are always available, and an intuitive, simple, and well thought-out user interface.
JOE has a great screen update optimisation algorithm, multiple windows (through/between which you can scroll) and lacks the confusing notion of named buffers. It has command history, tab expansion in file selection menus, undo and redo functions, (un)indenting and paragraph formatting, filtering highlighted blocks through any external Unix command, editing a pipe into or out of a command, block move, copy, delete or filter, a bracketed paste mode automatically enabled on xterm-xfree86 and decimal and hexadecimal gotos for lines, columns, and file offsets.
Through simple QEdit-style configuration files, JOE can be set up to emulate editors such as Pico and Emacs, along with a complete imitation of WordStar in non-document mode, and a restricted mode version (lets you edit only the files specified on the command line). JOE also has a deferred screen update to handle typeahead, and it ensures that deferral is not bypassed by tty buffering. It’s usable even at 2400 baud, and it will work on any kind of sane terminal. Furthermore, it supports SELinux context copying on Debian systems with the Linux kernel.
This version of JOE only comes with the “jupp” flavour, to not conflict with the Debian joe package, activated. The resource files and executable links and menu entries for the other flavours are still available, though, in the joe-jupp package.
To fix this problem, we can install more using the command below.
sudo apt-get -y install jupp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install jupp.
sudo apt -y install jupp
Or if you have aptitude installed you can use the following command.
sudo aptitude install jupp
Summary
In this tutorial we learn how to fix jupp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.