Re: Laptop Running Hot

2024-07-27 Thread 2QdxY4RzWzUUiLuE
On 2024-07-27 at 10:14:17 +0100, Ralph Corderoy wrote: > Perhaps https://wiki.archlinux.org/title/Powertop would be useful. > Though it takes a bit of study to understand the tabs of readings, and > can lead to searching for answers elsewhere for what's shown rather than > giving an obvious answe

Re: Laptop Running Hot

2024-07-27 Thread 2QdxY4RzWzUUiLuE
On 2024-07-27 at 08:56:15 +0200, Ralf Mardorf wrote: > On Sat, 2024-07-27 at 08:41 +0300, İsmail Arılık wrote: > > Did you check which service were using how much resource? > > My understanding is, that the machine is idle, quasi no resources are > used at all. FWIW I'm on an tower PC with an In

Re: Laptop Running Hot

2024-07-27 Thread 2QdxY4RzWzUUiLuE
On 2024-07-27 at 02:53:14 -0500, "David C. Rankin" wrote: > On 7/27/24 12:41 AM, İsmail Arılık wrote: > > > grep '^processor\|^cpu MHz' /proc/cpuinfo > > > > processor       : 0 > > cpu MHz         : 400.000 > > processor       : 1 > > cpu MHz         : 400.000 > > processor       : 2 > > cpu M

Re: Laptop Running Hot

2024-07-27 Thread Ralph Corderoy
Hi, David wrote: > You have 12 cores at dead-idle (400MHz) and 8 cores at 1400MHz or > less. A slightly longer pipeline will summarise a bit. awk '/^cpu MHz/ {print int($4 / 10) * 10}' /proc/cpuinfo | sort -V | uniq -c Running something similar on the OP's output gives an example:

Re: Laptop Running Hot

2024-07-27 Thread David C. Rankin
On 7/27/24 12:41 AM, İsmail Arılık wrote: > grep '^processor\|^cpu MHz' /proc/cpuinfo processor       : 0 cpu MHz         : 400.000 processor       : 1 cpu MHz         : 400.000 processor       : 2 cpu MHz         : 400.000 processor       : 3 cpu MHz         : 400.000 processor       : 4 cpu M