upscmd command not found

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

Introduction

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

upscmd: command not found

or when using sudo you get the following error message

sudo: upscmd: command not found

Solutions to upscmd: command not found

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

In Ubuntu upscmd is provided by nut-client package.

nut-client is:

Network UPS Tools (NUT) is a client/server monitoring system that allows computers to share uninterruptible power supply (UPS) and power distribution unit (PDU) hardware. Clients access the hardware through the server, and are notified whenever the power status changes.

This package provides NUT’s clients that allows the user to control and monitor the UPS.

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

sudo apt-get -y install nut-client

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

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

sudo apt -y install nut-client

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

sudo aptitude install nut-client

Summary

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