xsensors command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xsensors: command not found
or when using sudo you get the following error message
sudo: xsensors: command not found
Solutions to xsensors: command not found
How To Fix xsensors: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xsensors is provided by xsensors package.
xsensors is:
xsensors reads data from the libsensors library regarding hardware health such as temperature, voltage and fan speed and displays the information in a digital read-out.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xsensors
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xsensors.
sudo apt -y install xsensors
Or if you have aptitude installed you can use the following command.
sudo aptitude install xsensors
Summary
In this tutorial we learn how to fix xsensors command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.