tcs command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tcs: command not found
or when using sudo you get the following error message
sudo: tcs: command not found
Solutions to tcs: command not found
How To Fix tcs: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tcs is provided by tcs package.
tcs is:
tcs translates character sets from one encoding to another.
Supported encodings include utf (ISO utf-8), ascii, ISO 8859-[123456789], koi8, jis-kanji, ujis, ms-kanji, jis, gb, big5, unicode, tis, msdos, and atari.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tcs
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tcs.
sudo apt -y install tcs
Or if you have aptitude installed you can use the following command.
sudo aptitude install tcs
Summary
In this tutorial we learn how to fix tcs command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.