rdacheck command not found

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

Introduction

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

rdacheck: command not found

or when using sudo you get the following error message

sudo: rdacheck: command not found

Solutions to rdacheck: command not found

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

In Ubuntu rdacheck is provided by librda-bin package.

librda-bin is:

This library provides an API for detecting if a desktop session is running inside a remote desktop session (e.g. X2Go).

This package contains the RDA check utility.

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

sudo apt-get -y install librda-bin

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

You can also use apt command to install librda-bin.

sudo apt -y install librda-bin

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

sudo aptitude install librda-bin

Summary

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