crudini command not found

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

Introduction

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

crudini: command not found

or when using sudo you get the following error message

sudo: crudini: command not found

Solutions to crudini: command not found

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

In Ubuntu crudini is provided by crudini package.

crudini is:

crudini is a utility to simplify reading and updating ini files from shell scripts, so named as it provides CRUD functionality. It can handle most variants of ini.

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

sudo apt-get -y install crudini

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

You can also use apt command to install crudini.

sudo apt -y install crudini

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

sudo aptitude install crudini

Summary

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