1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 13:15:25 +02:00
tldr/pages/linux/cpufreq-info.md

33 lines
881 B
Markdown
Raw Normal View History

2017-12-29 03:41:00 +08:00
# cpufreq-info
> Show CPU frequency information.
> More information: <https://manned.org/cpufreq-info>.
2017-12-29 03:41:00 +08:00
- Show CPU frequency information for all CPUs:
`cpufreq-info`
- Show CPU frequency information for the specified CPU:
`cpufreq-info {{[-c|--cpu]}} {{cpu_number}}`
2017-12-29 03:41:00 +08:00
2018-01-08 16:27:05 +08:00
- Show the allowed minimum and maximum CPU frequency:
`cpufreq-info {{[-l|--hwlimits]}}`
2018-01-08 16:27:05 +08:00
- Show the current minimum and maximum CPU frequency and policy in table format:
2017-12-29 03:41:00 +08:00
`cpufreq-info {{[-o|--proc]}}`
2017-12-29 03:41:00 +08:00
- Show available CPU frequency policies:
`cpufreq-info {{[-g|--governors]}}`
2017-12-29 03:41:00 +08:00
- Show current CPU work frequency in a human-readable format, according to the cpufreq kernel module:
`cpufreq-info {{[-f|--freq]}} {{[-m|--human]}}`
2017-12-29 03:41:00 +08:00
- Show current CPU work frequency in a human-readable format, by reading it from hardware (only available to root):
`sudo cpufreq-info {{[-w|--hwfreq]}} {{[-m|--human]}}`