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