From f8c6b5b660ca2d098b1fb0ceb7ccad798dec92db Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 22 Nov 2017 16:06:37 -0800 Subject: how to connect to wifi with no gui --- networking/terminal_wifi.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 networking/terminal_wifi.txt diff --git a/networking/terminal_wifi.txt b/networking/terminal_wifi.txt new file mode 100644 index 0000000..8952222 --- /dev/null +++ b/networking/terminal_wifi.txt @@ -0,0 +1,24 @@ + +## Basic Linux WiFi/WPA2 configuration + +These are helpful if you don't have network-manager or whatever installed, eg +if you are on a headless computer with no wired ethernet. + +Basics with `iw` and `ip`. These tools can't do WPA2 on their own: + + iw dev + ip link set wlp3s0 up + iw wlp3s0 link + iw wlp3s0 scan + iw wlp3s0 scan | grep WSSID + + +Do WPA2 setup and DHCP: + + wpa_passphrase W.A.S.T.E. > /etc/wpa_supplicant/wpa_supplicant-bootsrap.conf + # enter password + + wpa_supplicant -D wext -i wlp3s0 -c /etc/wpa_supplicant/wpa_supplicant-bootsrap.conf + # leave running in a terminal + + dhclient wlp3s0 -- cgit v1.2.3