tuned-adm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tuned-adm: command not found
or when using sudo you get the following error message
sudo: tuned-adm: command not found
Solutions to tuned-adm: command not found
How To Fix tuned-adm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tuned-adm is provided by tuned package.
tuned 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.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tuned
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tuned.
sudo apt -y install tuned
Or if you have aptitude installed you can use the following command.
sudo aptitude install tuned
Summary
In this tutorial we learn how to fix tuned-adm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.