mod2osis command not found

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

Introduction

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

mod2osis: command not found

or when using sudo you get the following error message

sudo: mod2osis: command not found

Solutions to mod2osis: command not found

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

In Ubuntu mod2osis is provided by libsword-utils package.

libsword-utils is:

The SWORD Project is an open source, cross-platform (Linux, Windows, Solaris, MacOSX etc.) API/library for Bible software with a constantly growing list of front-ends (GUI, textmode, web-based, etc.) and a library of over 200 text modules.

This package contains utilities to convert documents in various formats into those suitable to be used with SWORD library.

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

sudo apt-get -y install libsword-utils

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

You can also use apt command to install libsword-utils.

sudo apt -y install libsword-utils

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

sudo aptitude install libsword-utils

Summary

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