dmrconf command not found

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

Introduction

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

dmrconf: command not found

or when using sudo you get the following error message

sudo: dmrconf: command not found

Solutions to dmrconf: command not found

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

In Ubuntu dmrconf is provided by qdmr package.

qdmr is:

qdmr is a Qt5 application to program DMR radios. DMR is a digital modulation standard used in amateur and commercial radio. To this end, qdmr is an alternative codeplug programming software (CPS) that supports several radios of several manufacturers. Including AnyTone AT-D868UVE, AT-D878UV, AT-878UVII, AT-D578UV, TyT MD-390, MD-UV380, MD-UV390, MD-2017, Retevis RT8, RT3S, RT82, Radioddity RD5R, GD-77, Baofeng DMR-6X2 and radio running the OpenGD77 firmware.

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

sudo apt-get -y install qdmr

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

You can also use apt command to install qdmr.

sudo apt -y install qdmr

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

sudo aptitude install qdmr

Summary

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