dvblast_mmi.sh command not found

In this troubleshooting guide we learn how to fix dvblast_mmi.sh command not found error message

Introduction

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

dvblast_mmi.sh: command not found

or when using sudo you get the following error message

sudo: dvblast_mmi.sh: command not found

Solutions to dvblast_mmi.sh: command not found

How To Fix dvblast_mmi.sh: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dvblast_mmi.sh is provided by dvblast package.

dvblast is:

DVBlast is a simple and powerful streaming application based on the linux-dvb API. It opens a DVB device, tunes it, places PID filters, configures a CAM module, and demultiplexes the packets to several RTP outputs.

DVBlast is designed to be the core of a custom IRD or CID, based on a PC with Linux-supported DVB cards.

DVBlast does not do any kind of processing on the elementary streams, such as transcoding, PID remapping or remultiplexing. it does not stream from plain files, only DVB devices. If you were looking for these features, switch to VLC.

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

sudo apt-get -y install dvblast

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

You can also use apt command to install dvblast.

sudo apt -y install dvblast

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

sudo aptitude install dvblast

Summary

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