mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 10:22:08 +02:00
Update cpufreq-set.md
This commit is contained in:
parent
2fbd2598eb
commit
9c55758596
1 changed files with 4 additions and 4 deletions
|
@ -1,20 +1,20 @@
|
||||||
# cpufreq-set
|
# cpufreq-set
|
||||||
|
|
||||||
> A tool to modify CPU frequency settings.
|
> 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":
|
- Set the CPU frequency policy of CPU 1 to "userspace":
|
||||||
|
|
||||||
`sudo cpufreq-set -c {{1}} -g {{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}}`
|
`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}}`
|
`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}}`
|
`sudo cpufreq-set -c {{1}} -f {{work_frequency}}`
|
||||||
|
|
Loading…
Add table
Reference in a new issue