reclass command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
reclass: command not found
or when using sudo you get the following error message
sudo: reclass: command not found
Solutions to reclass: command not found
How To Fix reclass: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu reclass is provided by reclass package.
reclass is:
reclass is an “external node classifier” (ENC) as can be used with automation tools, such as Puppet, Salt, and Ansible. It is also a stand-alone tool for merging data sources recursively.
The purpose of an ENC is to allow a system administrator to maintain an inventory of nodes to be managed, completely separately from the configuration of the automation tool. Usually, the external node classifier completely replaces the tool-specific inventory (such as site.pp for Puppet, ext_pillar/master_tops for Salt, or /etc/ansible/hosts).
reclass allows you to define your nodes through class inheritance, while always able to override details further up the tree (i.e. in more specific nodes). Think of classes as feature sets, as commonalities between nodes, or as tags. Add to that the ability to nest classes (multiple inheritance is allowed, well-defined, and encouraged), and piece together your infrastructure from smaller bits, eliminating redundancy and exposing all important parameters to a single location, logically organised.
This is the fork of the original reclass by SaltStack Formulas.
This package provides the reclass CLI and adapters for Salt and Ansible.
To fix this problem, we can install more using the command below.
sudo apt-get -y install reclass
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install reclass.
sudo apt -y install reclass
Or if you have aptitude installed you can use the following command.
sudo aptitude install reclass
Summary
In this tutorial we learn how to fix reclass command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.