cconv command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
cconv: command not found
or when using sudo you get the following error message
sudo: cconv: command not found
Solutions to cconv: command not found
How To Fix cconv: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu cconv is provided by cconv package.
cconv is:
The Chinese national GB standard defines a basic set of (around 6,000) characters for use in Simplified Chinese writing; this excludes many of the characters in the Taiwanese industry standard for Traditional Chinese called Big5 (around 13,000 characters in the basic set). However, Unicode is a superset of both (with the duplication removed).
This tool is used for converting a UTF-8 string which contains both Simplified and Traditional Chinese characters directly into a single Chinese character set.
To fix this problem, we can install more using the command below.
sudo apt-get -y install cconv
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install cconv.
sudo apt -y install cconv
Or if you have aptitude installed you can use the following command.
sudo aptitude install cconv
Summary
In this tutorial we learn how to fix cconv command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.