From 9c55758596c71717e61b7fc3c5f90bda4cd79db3 Mon Sep 17 00:00:00 2001 From: Max Xu Date: Thu, 11 Jan 2018 19:45:28 +0800 Subject: [PATCH] Update cpufreq-set.md --- pages/linux/cpufreq-set.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/linux/cpufreq-set.md b/pages/linux/cpufreq-set.md index d419345f3..4411a04e9 100644 --- a/pages/linux/cpufreq-set.md +++ b/pages/linux/cpufreq-set.md @@ -1,20 +1,20 @@ # cpufreq-set > A tool to modify CPU frequency settings. -> Requires root privileges. +> New frequency value range between the output of command `cpufreq-info -l`. - Set the CPU frequency policy of CPU 1 to "userspace": `sudo cpufreq-set -c {{1}} -g {{userspace}}` -- Set the current minimum CPU frequency of CPU 1, value range between the output of command `cpufreq-info -l`: +- Set the current minimum CPU frequency of CPU 1: `sudo cpufreq-set -c {{1}} --min {{min_frequency}}` -- Set the current maximum CPU frequency of CPU 1, value range between the output of command `cpufreq-info -l`: +- Set the current maximum CPU frequency of CPU 1: `sudo cpufreq-set -c {{1}} --max {{max_frequency}}` -- Set the current work frequency of CPU 1 , value range between the output of command `cpufreq-info -l` (requires "userspace" policy to be loaded): +- Set the current work frequency of CPU 1: `sudo cpufreq-set -c {{1}} -f {{work_frequency}}`