m17n-db command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
m17n-db: command not found
or when using sudo you get the following error message
sudo: m17n-db: command not found
Solutions to m17n-db: command not found
How To Fix m17n-db: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu m17n-db is provided by m17n-db package.
m17n-db is:
The m17n library is a multilingual text processing library for the C language. This library has following features:
- The m17n library is an open source software.
- The m17n library for any Linux/Unix applications.
- The m17n library realizes multilingualization of many aspects of applications.
- The m17n library represents multilingual text as an object named M-text. M-text is a string with attributes called text properties, and designed to substitute for string in C. Text properties carry any information required to input, display and edit the text.
- The m17n library supports functions to handle M-texts.
m17n is an abbreviation of Multilingualization.
This package contains the database files used by m17n-lib.
To fix this problem, we can install more using the command below.
sudo apt-get -y install m17n-db
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install m17n-db.
sudo apt -y install m17n-db
Or if you have aptitude installed you can use the following command.
sudo aptitude install m17n-db
Summary
In this tutorial we learn how to fix m17n-db command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.