dose-rpmcheck command not found

In this troubleshooting guide we learn how to fix dose-rpmcheck command not found error message

Introduction

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

dose-rpmcheck: command not found

or when using sudo you get the following error message

sudo: dose-rpmcheck: command not found

Solutions to dose-rpmcheck: command not found

How To Fix dose-rpmcheck: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu dose-rpmcheck is provided by dose-distcheck package.

dose-distcheck is:

This software checks for every package of a distribution whether it is possible to satisfy its dependencies and conflicts within this distribution. It comes in several versions:

  • dose-debcheck for Debian packages
  • dose-rpmcheck for rpm packages
  • dose-eclipsecheck for OSGi plugins

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

sudo apt-get -y install dose-distcheck

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

You can also use apt command to install dose-distcheck.

sudo apt -y install dose-distcheck

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

sudo aptitude install dose-distcheck

Summary

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