aespipe command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
aespipe: command not found
or when using sudo you get the following error message
sudo: aespipe: command not found
Solutions to aespipe: command not found
How To Fix aespipe: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu aespipe is provided by aespipe package.
aespipe is:
aespipe is an encryption tool that reads from standard input and writes to standard output. It uses the AES (Rijndael) cipher.
aespipe can be used for non-destructive in-place encryption of existing disk partitions for use with the loop-AES encrypted loopback kernel module.
It can also be used as an encryption filter to create and restore encrypted tar/cpio backup archives and to read/write and convert loop-AES compatible encrypted images.
Note that aespipe does not store any length information with the encrypted images, so it cannot be used as general purpose filter for encryption, but only for certain formats like tar.
To fix this problem, we can install more using the command below.
sudo apt-get -y install aespipe
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install aespipe.
sudo apt -y install aespipe
Or if you have aptitude installed you can use the following command.
sudo aptitude install aespipe
Summary
In this tutorial we learn how to fix aespipe command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.