blob: 2a1957bfe5e3b564b153597acea78751c3866b0f (
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
31
32
33
|
<!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>Wifi region</title>
</head>
<body>
<header>
<h1>Bloggings</h1>
<a href="/index.php">Back</a>
</header>
<main>
<article>
<h2>Wifi region</h2>
<h3>2025-03-26</h3>
<h4>If like me you reside in France, you may have wifi problems with the default frequency settings.</h4>
<p>Verify the value:</p>
<code>iw reg get</code>
<p>If you don't see FR then it's not correctly set.</p>
<code>sudo iw reg set FR</code>
<p>will correct that. To make it persistant, edit /etc/default/crda and add</p>
<code>REGDOMAIN=FR</code>
<br>
<a href="https://sebsauvage.net/wiki/doku.php?id=linux-vrac">Source</a></p>
</article>
</main>
<footer>
<p> </p><p>§</p></footer>
</body></html>
|