reniced command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
reniced: command not found
or when using sudo you get the following error message
sudo: reniced: command not found
Solutions to reniced: command not found
How To Fix reniced: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu reniced is provided by reniced package.
reniced is:
reniced takes a list of regular expressions, looks for processes matching them and renices the processes to given values.
Instead of editing the scripts in /etc/init.d to give daemons the nicelevel you want (and get prompted at every package update because these files are conffiles) you can just run reniced once a day.
To fix this problem, we can install more using the command below.
sudo apt-get -y install reniced
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install reniced.
sudo apt -y install reniced
Or if you have aptitude installed you can use the following command.
sudo aptitude install reniced
Summary
In this tutorial we learn how to fix reniced command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.