powertop2tuned command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
powertop2tuned: command not found
or when using sudo you get the following error message
sudo: powertop2tuned: command not found
Solutions to powertop2tuned: command not found
How To Fix powertop2tuned: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu powertop2tuned is provided by tuned-utils package.
tuned-utils is:
The tuned package contains a daemon that tunes system settings dynamically. It does so by monitoring the usage of several system components periodically. Based on that information components will then be put into lower or higher power saving modes to adapt to the current usage. Currently only ethernet network and ATA harddisk devices are implemented.
This package contains utilities that can help you to fine tune and debug your system and manage tuned profiles.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tuned-utils
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tuned-utils.
sudo apt -y install tuned-utils
Or if you have aptitude installed you can use the following command.
sudo aptitude install tuned-utils
Summary
In this tutorial we learn how to fix powertop2tuned command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.