remctl command not found

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

Introduction

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

remctl: command not found

or when using sudo you get the following error message

sudo: remctl: command not found

Solutions to remctl: command not found

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

In Ubuntu remctl is provided by remctl-client package.

remctl-client is:

remctl is a client/server protocol for executing specific commands on a remote system with Kerberos authentication. The allowable commands must be listed in a server configuration file, and the executable run on the server may be mapped to any command name. Each command is also associated with an ACL containing a list of Kerberos principals authorized to run that command.

This package contains the client program (remctl).

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

sudo apt-get -y install remctl-client

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

You can also use apt command to install remctl-client.

sudo apt -y install remctl-client

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

sudo aptitude install remctl-client

Summary

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