omxregister-bellagio command not found

In this troubleshooting guide we learn how to fix omxregister-bellagio command not found error message

Introduction

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

omxregister-bellagio: command not found

or when using sudo you get the following error message

sudo: omxregister-bellagio: command not found

Solutions to omxregister-bellagio: command not found

How To Fix omxregister-bellagio: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu omxregister-bellagio is provided by libomxil-bellagio-bin package.

libomxil-bellagio-bin is:

OpenMAX Integration Layer (IL) is a standard API to access Multimedia Components on mobile platforms. It has been defined by the Khronos group. By means of the OpenMAX IL API, multimedia frameworks can access hardware accelerators on platforms that provide it.

Bellagio is an opensource implementation of the OpenMAX IL API that runs on Linux.

It is intended to show the usage of the IL API and to allow people to start developing components.

This package provides the OpenMAX IL core shared library with a “reference” component.

This package provides the OpenMAX IL core utilities.

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

sudo apt-get -y install libomxil-bellagio-bin

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

You can also use apt command to install libomxil-bellagio-bin.

sudo apt -y install libomxil-bellagio-bin

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

sudo aptitude install libomxil-bellagio-bin

Summary

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