inifile command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
inifile: command not found
or when using sudo you get the following error message
sudo: inifile: command not found
Solutions to inifile: command not found
How To Fix inifile: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu inifile is provided by virtuoso-opensource-7-common package.
virtuoso-opensource-7-common is:
OpenLink Virtuoso is a high-performance object-relational SQL database. It provides transactions, a smart SQL compiler, hot backup, SQL:1999 support, a powerful stored-procedure language supporting server-side Java or .NET, and more. It supports all major data-access interfaces, including ODBC, JDBC, ADO.NET, and OLE/DB.
This package contains files common to all versions of Virtuoso.
To fix this problem, we can install more using the command below.
sudo apt-get -y install virtuoso-opensource-7-common
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install virtuoso-opensource-7-common.
sudo apt -y install virtuoso-opensource-7-common
Or if you have aptitude installed you can use the following command.
sudo aptitude install virtuoso-opensource-7-common
Summary
In this tutorial we learn how to fix inifile command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.