trocla command not found

In this troubleshooting guide we learn how to fix trocla command not found error message

Introduction

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

trocla: command not found

or when using sudo you get the following error message

sudo: trocla: command not found

Solutions to trocla: command not found

How To Fix trocla: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu trocla is provided by trocla package.

trocla is:

Trocla helps you to generate random passwords and to store them in various formats (plain, MD5, bcrypt) for later retrival.

An example for such an application is puppet and trocla can help you to not store any plaintext or hashed passwords in your manifests by keeping these passwords only on your puppetmaster.

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

sudo apt-get -y install trocla

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

You can also use apt command to install trocla.

sudo apt -y install trocla

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

sudo aptitude install trocla

Summary

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