psst command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
psst: command not found
or when using sudo you get the following error message
sudo: psst: command not found
Solutions to psst: command not found
How To Fix psst: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu psst is provided by psst package.
psst is:
Power Stress and Shaping Tool (PSST) is a controlled power tool for Intel SoC components such as CPU and GPU. PSST enables very fine control of stress function without its own process overhead
To fix this problem, we can install more using the command below.
sudo apt-get -y install psst
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install psst.
sudo apt -y install psst
Or if you have aptitude installed you can use the following command.
sudo aptitude install psst
Summary
In this tutorial we learn how to fix psst command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.