-
Notifications
You must be signed in to change notification settings - Fork 1
/
CPU.txt
54 lines (33 loc) · 1.21 KB
/
CPU.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Content-Type: text/x-zim-wiki
Wiki-Format: zim 0.4
Creation-Date: 2016-10-23T18:12:13+02:00
====== CPU ======
Created søndag 23 oktober 2016
**#** **To monitor CPU speed in real time, run **
$ watch grep \"cpu MHz\" /proc/cpuinfo
== Thermald ==
**# Will help keep your system at a accepted temperature**
$ yaourt -S thermald
== i7z ==
**# Reporting tool for Intel processors**
$ pacman -S i7z
**# Invoke with **
$ i7z
$ i7z-gui
== CpuPower ==
**# Assists with CPU frequency scaling**
$ pacman -S cpupower
**# You can load a specific governor at boot-time by defining it in **///etc/default/cpupower//
**# Ex;**
{{{code: lang="texinfo" linenumbers="True"
governor='performance'
}}}
**#** **Enable the service**
$ systemctl enable cpupower.service
**# There are a couple of different Governors, which will have impact on the systems performance**
**# These seems to be the most common Governor settings;**
**# **//performance //**= Run the CPU at maximum frequency **
**# **//powersave //**= Run the CPU at minimum frequency **
**# **//ondemand//** = Scales the frequency dynamically according to the current load**
**# To activate a particular Governor, ex **//performance//
$ cpupower frequency-set -g performance