xjed command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xjed: command not found
or when using sudo you get the following error message
sudo: xjed: command not found
Solutions to xjed: command not found
How To Fix xjed: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xjed is provided by xjed package.
xjed is:
Jed is a small, fast (faster startup than xterm with bash), and powerful text editor.
Completely customizable with prepared emulation modes for Emacs, CUA (similar to KDE/Gnome/Openoffice), Borland-IDE, Brief, and EDT. Extensible in the S-Lang scripting language (with a syntax resembling C).
Editing functions: folding support; rectangular cut/paste; regular expression search/replace; incremental searches; search/replace across multiple files; multiple windows; multiple buffers; …
Special modes (syntax highlight, indention, compile, …) for Basic, C, C++, DCL, FORTRAN, IDL, Java, NROFF, Pascal, Perl, PHP, PostScript, Python, SH. Modes for markup languages include HTML and (La)TeX (with AUC-TeX style editing and BibTeX)
Tools: directory editor (dired); info (browse GNU info files); mail; rmail; ispell; shell mode; …
The native X11 version provides improved mouse support, key configuration and X selection interaction. If no display is available, xjed falls back to text mode, thus there is no need to install both jed and xjed packages.
Additional tools and modes can be found in the jed-extra package.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xjed
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xjed.
sudo apt -y install xjed
Or if you have aptitude installed you can use the following command.
sudo aptitude install xjed
Summary
In this tutorial we learn how to fix xjed command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.