diff options
author | Akshay <[email protected]> | 2023-02-12 06:43:49 +0000 |
---|---|---|
committer | Akshay <[email protected]> | 2023-02-12 06:43:49 +0000 |
commit | 366df8852f503523cc4f9046d82ba9a99dd51d7f (patch) | |
tree | 635884dd5700cdc2a22a8885031aa67816bbe1b0 /docs/posts/WPA_woes | |
parent | 57a1fc656e05e1fcf07e4cff3dc988c6b5c2bc59 (diff) |
new art: lapse
Diffstat (limited to 'docs/posts/WPA_woes')
-rw-r--r-- | docs/posts/WPA_woes/index.html | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/posts/WPA_woes/index.html b/docs/posts/WPA_woes/index.html index 55b2630..0a2e44c 100644 --- a/docs/posts/WPA_woes/index.html +++ b/docs/posts/WPA_woes/index.html | |||
@@ -28,7 +28,7 @@ | |||
28 | 12/10 — 2019 | 28 | 12/10 — 2019 |
29 | <div class="stats"> | 29 | <div class="stats"> |
30 | <span class="stats-number"> | 30 | <span class="stats-number"> |
31 | 18.37 | 31 | 18.38 |
32 | </span> | 32 | </span> |
33 | <span class="stats-unit">cm</span> | 33 | <span class="stats-unit">cm</span> |
34 |   | 34 |   |
@@ -42,8 +42,12 @@ | |||
42 | WPA Woes | 42 | WPA Woes |
43 | </h1> | 43 | </h1> |
44 | <div class="post-text"> | 44 | <div class="post-text"> |
45 | <p>I finally got around to installing Void GNU/Linux on my main computer. Rolling release, non-systemd, need I say more?</p> | 45 | <p>I finally got around to installing Void GNU/Linux on my main |
46 | <p>As with all GNU/Linux distributions, wireless networks had me in a fix. If you can see this post, it means I’ve managed to get online. It turns out, <code>wpa_supplicant</code> was detecting the wrong interface by default (does it ever select the right one?). Let us fix that:</p> | 46 | computer. Rolling release, non-systemd, need I say more?</p> |
47 | <p>As with all GNU/Linux distributions, wireless networks had me in a | ||
48 | fix. If you can see this post, it means I’ve managed to get online. It | ||
49 | turns out, <code>wpa_supplicant</code> was detecting the wrong interface | ||
50 | by default (does it ever select the right one?). Let us fix that:</p> | ||
47 | <pre><code>$ sudo rm -r /var/service/wpa_supplicant | 51 | <pre><code>$ sudo rm -r /var/service/wpa_supplicant |
48 | $ sudo killall dhcpcd</code></pre> | 52 | $ sudo killall dhcpcd</code></pre> |
49 | <p>What is the right interface though?</p> | 53 | <p>What is the right interface though?</p> |
@@ -51,7 +55,8 @@ $ sudo killall dhcpcd</code></pre> | |||
51 | ... | 55 | ... |
52 | Interface wlp2s0 | 56 | Interface wlp2s0 |
53 | ...</code></pre> | 57 | ...</code></pre> |
54 | <p>Aha! Let us run <code>wpa_supplicant</code> on that interface, as a background process:</p> | 58 | <p>Aha! Let us run <code>wpa_supplicant</code> on that interface, as a |
59 | background process:</p> | ||
55 | <pre><code>$ sudo wpa_supplicant -B -i wlp2s0 -c /etc/wpa_supplicant/wpa_supplicant.conf | 60 | <pre><code>$ sudo wpa_supplicant -B -i wlp2s0 -c /etc/wpa_supplicant/wpa_supplicant.conf |
56 | $ sudo dhcpcd -B wlp2s0 | 61 | $ sudo dhcpcd -B wlp2s0 |
57 | $ ping google.com | 62 | $ ping google.com |