tcplay command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tcplay: command not found
or when using sudo you get the following error message
sudo: tcplay: command not found
Solutions to tcplay: command not found
How To Fix tcplay: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tcplay is provided by tcplay package.
tcplay is:
tcplay is a free (BSD-licensed), pretty much fully featured (including multiple keyfiles, cipher cascades, etc) and stable TrueCrypt implementation.
This implementation supports mapping (opening) both system and normal TrueCrypt volumes, as well as opening hidden volumes and opening an outer volume while protecting a hidden volume. There is also support to create volumes, including hidden volumes, etc.
Since tcplay uses dm-crypt it makes full use of any available hardware encryption/decryption support once the volume has been mapped.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tcplay
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tcplay.
sudo apt -y install tcplay
Or if you have aptitude installed you can use the following command.
sudo aptitude install tcplay
Summary
In this tutorial we learn how to fix tcplay command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.