ujguess command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ujguess: command not found
or when using sudo you get the following error message
sudo: ujguess: command not found
Solutions to ujguess: command not found
How To Fix ujguess: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ujguess is provided by libunicode-japanese-perl package.
libunicode-japanese-perl is:
Unicode::Japanese is a Perl module for converting Japanese encodings. It has support for conversion between ZENKAKU and HANKAKU, and safely handles EMOJI for mobile devices (DoCoMo i-mode, ASTEL dot-i and J-PHONE J-Sky).
To fix this problem, we can install more using the command below.
sudo apt-get -y install libunicode-japanese-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libunicode-japanese-perl.
sudo apt -y install libunicode-japanese-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libunicode-japanese-perl
Summary
In this tutorial we learn how to fix ujguess command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.