-
Notifications
You must be signed in to change notification settings - Fork 6
Adding the Console to a WiFi network
pachpict edited this page Apr 18, 2023
·
5 revisions
Just a quick note that you can add a new WiFi network without taking the SD card out by using a very similar method:
sudo micro /etc/wpa_supplicant/wpa_supplicant.conf
The file will look something like this. You can add as many networks as you need.
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=GB
# Example home network
network={
ssid="Enter_Network_Name_Here"
psk="Your_Password_Here"
key_mgmt=WPA-PSK
}
# Example work network
network={
ssid="Enter_Network_Name_Here"
psk="Your_Password_Here"
key_mgmt=WPA-PSK
}