cjet command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cjet: command not found
or when using sudo you get the following error message
sudo: cjet: command not found
Solutions to cjet: command not found
How To Fix cjet: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cjet is provided by printer-driver-cjet package.
printer-driver-cjet is:
CJET filters printer data from stdin to stdout, converting HP PCL (Printer Command Language) escape sequences and data structures, e.g. font headers, to their CaPSL equivalents.
CaPSL stands for Canon Printing System Language. It is a set of control command developed for the Canon European Language Printer. CaPSL was used in Canon Export Models such as LBP-8markIII series and LBP-4series. Canon’s older Japanese models (LBP-A404 GII etc. LIPS-III as default command) usually have CaPSL emulation mode.
To fix this problem, we can install more using the command below.
sudo apt-get -y install printer-driver-cjet
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install printer-driver-cjet.
sudo apt -y install printer-driver-cjet
Or if you have aptitude installed you can use the following command.
sudo aptitude install printer-driver-cjet
Summary
In this tutorial we learn how to fix cjet command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.