systune command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
systune: command not found
or when using sudo you get the following error message
sudo: systune: command not found
Solutions to systune: command not found
How To Fix systune: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu systune is provided by systune package.
systune is:
This program writes kernel parameters, previously saved in a configuration file, to the /proc filesystem. This enables kernel performance to be adjusted without recompiling the kernel.
systune can be alternative to sysctl(8). It is also started after the most daemons and other init.d scripts, so it can be used as “second stage” sysctl.
To fix this problem, we can install more using the command below.
sudo apt-get -y install systune
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install systune.
sudo apt -y install systune
Or if you have aptitude installed you can use the following command.
sudo aptitude install systune
Summary
In this tutorial we learn how to fix systune command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.