So the simple answer could be just install tuned apt install tuned
I wonder if the ondemand service would collide with tuned-adm so being it disabling the service before installing tuned.
This is what I think I should do
systemctl stop ondemand
systemctl disable ondemand
apt install tuned
I want to confirm this because I have no documentation saying I should do this.
The two processes don't really conflict with each other.
ondemand.service
focuses on setting the CPU Frequency Scaling governor.:Tuned on the other hand focuses on optimizing performance of storage devices (including swap):
The Tuned Project
Tuned is a system tuning service for Linux. It:
There should be no problem keeping
ondemand
service running or disabling it before installingtuned
.