Skip to content

Instantly share code, notes, and snippets.

@RudyJessop
Last active March 19, 2023 02:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RudyJessop/ce077efad00711ac34c0fe4fbabd6f6d to your computer and use it in GitHub Desktop.
Save RudyJessop/ce077efad00711ac34c0fe4fbabd6f6d to your computer and use it in GitHub Desktop.
raspberrypi zero wifi setup

create ssh file to enable ssh

create wpa_supplicant.conf to automatically connect to wifi.

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=US

network={
	ssid="Your network SSID"
	psk="Your WPA/WPA2 security key"
	key_mgmt=WPA-PSK
}

Basic items if memory fails me
ssh pi{ip_address} lookup ipaddress within https://myfiosgateway.com/network.htm

I like accessing raspberrypi without monitors so we need a Remote Desktop App

For windows systems
sudo apt install xrdp -y

For Unix/Linux
sudo apt install remmina -y

View https://raspberrytips.com/remote-desktop-raspberry-pi/ for additional info

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment