juffed command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
juffed: command not found
or when using sudo you get the following error message
sudo: juffed: command not found
Solutions to juffed: command not found
How To Fix juffed: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu juffed is provided by juffed package.
juffed is:
JuffEd is a simple, cross-platform text editor written using the Qt toolkit and the QScintilla library. It supports most features found in modern text editors, including syntax highlighting, bracket matching, switching encodings, sessions, and a plugin API.
This package contains the JuffEd editor.
To fix this problem, we can install more using the command below.
sudo apt-get -y install juffed
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install juffed.
sudo apt -y install juffed
Or if you have aptitude installed you can use the following command.
sudo aptitude install juffed
Summary
In this tutorial we learn how to fix juffed command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.