ujconv command not found

In this troubleshooting guide we learn how to fix ujconv command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

ujconv: command not found

or when using sudo you get the following error message

sudo: ujconv: command not found

Solutions to ujconv: command not found

How To Fix ujconv: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ujconv 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 ujconv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.