biboumi command not found

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

Introduction

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

biboumi: command not found

or when using sudo you get the following error message

sudo: biboumi: command not found

Solutions to biboumi: command not found

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

In Ubuntu biboumi is provided by biboumi package.

biboumi is:

Biboumi is an XMPP gateway that connects to IRC servers and translates between the two protocols. It can be used to access IRC channels using any XMPP client as if these channels were XMPP MUCs.

It is written in modern C++14 and makes great efforts to have as little dependencies and to be as simple as possible.

The goal is to provide a way to access most of IRC features using any XMPP client. It doesn’t however try to provide a complete mapping of the features of both worlds simply because this is not useful and most probably impossible. For example all IRC modes are not all translatable into an XMPP features. Some of them are (like +m (mute) or +o (operator) modes), but some others are IRC-specific. If IRC is the limiting factor (for example you cannot have a non-ASCII nickname on IRC) then biboumi doesn’t try to work around this issue: it just enforces the rules of the IRC server by telling the user that he/she must choose an ASCII-only nickname. An important goal is to keep the software (and its code) light and simple.

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

sudo apt-get -y install biboumi

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

You can also use apt command to install biboumi.

sudo apt -y install biboumi

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

sudo aptitude install biboumi

Summary

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