zuluCrypt-cli command not found

In this troubleshooting guide we learn how to fix zuluCrypt-cli command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

zuluCrypt-cli: command not found

or when using sudo you get the following error message

sudo: zuluCrypt-cli: command not found

Solutions to zuluCrypt-cli: command not found

How To Fix zuluCrypt-cli: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu zuluCrypt-cli is provided by zulucrypt-cli package.

zulucrypt-cli is:

zulucrypt is a suite of applications for creating and managing volumes encrypted with luks, plain, truecrypt and veracrypt.

zulucrypt-cli is a command line interface frontend to cryptsetup and tcplay and it is a tool that make it easy to manage LUKS, PLAIN and TRUECRYPT encrypted volumes. With one command you can encrypt a volume. Without zulucrypt-cli would be multiple commands needed to achieve the same result.

To fix this problem, we can install more using the command below.

sudo apt-get -y install zulucrypt-cli

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install zulucrypt-cli.

sudo apt -y install zulucrypt-cli

Or if you have aptitude installed you can use the following command.

sudo aptitude install zulucrypt-cli

Summary

In this tutorial we learn how to fix zuluCrypt-cli command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.