How To Install tuna on CentOS 7
Introduction
In this tutorial we learn how to install tuna on CentOS 7.
What is tuna
Provides interface for changing scheduler and IRQ tunables, at whole CPU and at per thread/IRQ level. Allows isolating CPUs for use by a specific application and moving threads and interrupts to a CPU by just dragging and dropping them. Operations can be done on CPU sockets, understanding CPU topology. Can be used as a command line utility without requiring the GUI libraries to be installed.
We can use yum or dnf to install tuna on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install tuna.
Install tuna on CentOS 7 Using yum
Update yum database with yum using the following command.
sudo yum makecache
After updating yum database, We can install tuna using yum by running the following command:
sudo yum -y install tuna
Install tuna on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf using the following command.
sudo dnf makecache
After updating yum database, We can install tuna using dnf by running the following command:
sudo dnf -y install tuna
How To Uninstall tuna on CentOS 7
To uninstall only the tuna package we can use the following command:
sudo dnf remove tuna
References
Summary
In this tutorial we learn how to install tuna on CentOS 7 using yum and dnf.