mergebdf command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
mergebdf: command not found
or when using sudo you get the following error message
sudo: mergebdf: command not found
Solutions to mergebdf: command not found
How To Fix mergebdf: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu mergebdf is provided by libbogl-dev package.
libbogl-dev is:
Ben’s Own Graphics Library is a small framebuffer library, including basic widgets, support for text in multiple languages, and mouse handling.
This package contains the BOGL include files, static library, and development documentation.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libbogl-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libbogl-dev.
sudo apt -y install libbogl-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libbogl-dev
Summary
In this tutorial we learn how to fix mergebdf command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.