redoctober command not found

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

Introduction

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

redoctober: command not found

or when using sudo you get the following error message

sudo: redoctober: command not found

Solutions to redoctober: command not found

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

In Ubuntu redoctober is provided by golang-redoctober package.

golang-redoctober is:

Red October is a software-based two-man rule style encryption and decryption server. The two-man rule is a control mechanism designed to achieve a high level of security by requiring the presence of two authorized people at all times. In the case of Red October the two-man rule is implemented by encrypting data in such as way as to require two authorised key-holds to decrypt it.

This package contains the server and command-line client.

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

sudo apt-get -y install golang-redoctober

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

You can also use apt command to install golang-redoctober.

sudo apt -y install golang-redoctober

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

sudo aptitude install golang-redoctober

Summary

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