blob: 2e8010d1771ec85c0eaf115948dba7dfe3e6a7dc (
plain)
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
|
<!doctype html>
<html lang="EN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style.css">
<title>Thinkpad X220 Fan control</title>
</head>
<body>
<header>
<h1>Bloggings</h1>
<a href="/index.php">Back</a>
</header>
<main>
<article>
<h2>Thinkpad X220 Fan control</h2>
<h3>2025-03-21</h3>
<h4>Blowing out the heat from my laptop</h4>
<p>After installing thinkfan, <code>sudo pacman -S thinkfan</code>
<p><code>journalctl -p 3 -xb</code> was showing an error concerning thinkfan, and I worked out that the thinkfan_acpi module wasn't being loaded on boot.</p>
<p>Adding thinkpad_acpi to <code>/etc/modules-load.d/thinkpad.conf</code> didn't work</p>
<p>What did work was editing <code>/etc/default/grub</code> and adding <code>thinkpad_acpi.fan_control=1</code> to <code>GRUB_CMDLINE_LINUX_DEFAULT</code></p>
<p>Then </p><p><code>sudo grub-mkconfig -o /boot/grub/grub.cfg</code></p>
</article>
</main>
<footer>
<p> </p><p>§</p></footer>
</body></html>
|