Jump to content

TuneD

From ArchWiki

This article is being considered for redirection to CPU frequency scaling#tuned.

Notes: Duplicates upstream's README, no Arch-specific content. (Discuss in Talk:TuneD)

TuneD is a service that monitors your system and optimizes the performance under certain workloads. The core of TuneD are profiles, which tune your system for different use cases.

Installation

The tuned package can be installed from offical Arch repository.

Once installed, enable and start the tuned.service.

 # systemctl enable --now tuned

Usage

List profiles

TuneD comes with a bunch of preset profiles. To check which profiles are available, run:

$ tuned-adm list

To see the currently active profile, run:

$ tuned-adm active

The enabled profile is also written to /etc/tuned/active_profile.

To see more information on the active profile, run:

 
$ tuned-adm profile_info


Switch to a profile

This is done via:

$ tuned-adm profile <profile-name>

Get a profile recommendation for your system:

$ tuned-adm recommend

Disable all profiles

Run:

$ tuned-adm off

See Also