goiardi command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
goiardi: command not found
or when using sudo you get the following error message
sudo: goiardi: command not found
Solutions to goiardi: command not found
How To Fix goiardi: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu goiardi is provided by goiardi package.
goiardi is:
Goiardi is an implementation of the Chef server written in Go. It can either run entirely in memory with the option to save and load the in-memory data and search indexes to and from disk, drawing inspiration from chef-zero, or it can use MariaDB/MySQL or PostgreSQL as its storage backend.
To fix this problem, we can install more using the command below.
sudo apt-get -y install goiardi
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install goiardi.
sudo apt -y install goiardi
Or if you have aptitude installed you can use the following command.
sudo aptitude install goiardi
Summary
In this tutorial we learn how to fix goiardi command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.