HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

turbostat — Report processor topology, frequency, temperature, power, and idle statistics. More information: <ht

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandreportprocessortopologyfrequencytemperaturecliturbostat
linux

Problem

How to use the turbostat command: Report processor topology, frequency, temperature, power, and idle statistics. More information: <https://manned.org/turbostat>.

Solution

turbostat — Report processor topology, frequency, temperature, power, and idle statistics. More information: <https://manned.org/turbostat>.

Display statistics every 5 seconds:
sudo turbostat


Display statistics every specified amount of seconds:
sudo turbostat {{[-i|--interval]}} {{n_seconds}}


Do not decode and print the system configuration header information:
sudo turbostat --quiet


Display useful information about CPU every 1 second, without header information:
sudo turbostat --quiet {{[-i|--interval]}} 1 --cpu 0-{{CPU_thread_count}} --show "PkgWatt","Busy%","Core","CoreTmp","Thermal"


Display help:
turbostat --help

Code Snippets

Display statistics every 5 seconds

sudo turbostat

Display statistics every specified amount of seconds

sudo turbostat {{[-i|--interval]}} {{n_seconds}}

Do not decode and print the system configuration header information

sudo turbostat --quiet

Display useful information about CPU every 1 second, without header information

sudo turbostat --quiet {{[-i|--interval]}} 1 --cpu 0-{{CPU_thread_count}} --show "PkgWatt","Busy%","Core","CoreTmp","Thermal"

Display help

turbostat --help

Context

tldr-pages: linux/turbostat

Revisions (0)

No revisions yet.