mozcerts-qt5 command not found

In this troubleshooting guide we learn how to fix mozcerts-qt5 command not found error message

Introduction

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

mozcerts-qt5: command not found

or when using sudo you get the following error message

sudo: mozcerts-qt5: command not found

Solutions to mozcerts-qt5: command not found

How To Fix mozcerts-qt5: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu mozcerts-qt5 is provided by qca-qt5-2-utils package.

qca-qt5-2-utils is:

The Qt Cryptographic Architecture (QCA) provides a straightforward and cross- platform API for a range of cryptographic features, including SSL/TLS, X.509 certificates, SASL, OpenPGP, S/MIME CMS, and smart cards.

This package contains the command line tool for the Qt Cryptographic Architecture.

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

sudo apt-get -y install qca-qt5-2-utils

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

You can also use apt command to install qca-qt5-2-utils.

sudo apt -y install qca-qt5-2-utils

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

sudo aptitude install qca-qt5-2-utils

Summary

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