linkltc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
linkltc: command not found
or when using sudo you get the following error message
sudo: linkltc: command not found
Solutions to linkltc: command not found
How To Fix linkltc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu linkltc is provided by libtranscript-dev package.
libtranscript-dev is:
libtranscript is a character-set conversion library, much like the iconv set of functions. The library allows great control over the conversions. It was designed for use in programs which use Unicode internally, using UTF-8, UTF-16 or UTF-32/UCS-4.
This package contains the header files to compile programs against libtranscript, and to develop converters for use in libtranscript. It also contains the ucm2ltc program to create compilable converters from .ucm files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libtranscript-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libtranscript-dev.
sudo apt -y install libtranscript-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libtranscript-dev
Summary
In this tutorial we learn how to fix linkltc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.