For about two weeks I have noticed that the temperatures of my cores have increased and are now stable at 70-86 degrees, which is not normal. The fan is always on 3200/3600 rpm and the processor and ram are almost always at maximum. I have not installed anything or done other operations that could have caused this. Could it only be dust in my notebook? Thank you in advance for the help
This is the result of atop
into terminal
Your system is short of RAM and is relying on virtual memory. Either run fewer apps or do something to increase the amount of RAM like buying more RAM for your computer or getting a bigger computer.
I know this because
atop
is showing highswout
. Paging out is bad, paging in is usually harmless by comparison. The scanning rate is also high, the system scans for pages to scavenge when it is short of free RAM.My experience hearkens back when the BSD
vmstat
had ansr
column (and Sun copied this feature into the SysVR4 Solaris). Thesr
was "scanning rate" (for LRU pages). It was the most critical column to pay attention to as it would only go high when the system was starving for memeory. Linux didn't get it at first, theirvmstat
never had ansr
but things are starting to get back there, thedstat --adv-mem
feature was recently added and it looks at scanning rate. Linux proper (the kernel, that is) has scanning instrumentation, seegrep -i scan /proc/vmstat
.