Update cheatsheets

This commit is contained in:
ivuorinen
2024-06-08 00:14:59 +00:00
parent fb52b80b2f
commit 84caf38102
29 changed files with 57 additions and 28 deletions

29
tldr/linux/turbostat Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# turbostat
> Report processor topology, frequency, temperature, power, and idle statistics.
> More information: <https://manned.org/turbostat.8>.
- Display statistics every 5 seconds:
`sudo turbostat`
- Display statistics every specified amount of seconds:
`sudo turbostat -i {{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 --interval 1 --cpu 0-{{CPU_thread_count}} --show "PkgWatt","Busy%","Core","CoreTmp","Thermal"`
- Display help:
`turbostat --help`