Skip to content

Instantly share code, notes, and snippets.

@aerobless
Last active April 6, 2019 18:20
Show Gist options
  • Save aerobless/54ce05c092a216b6cf52b8c2946f93ba to your computer and use it in GitHub Desktop.
Save aerobless/54ce05c092a216b6cf52b8c2946f93ba to your computer and use it in GitHub Desktop.
Raspberry PI headless 2018-07

1. Put wpa_supplicant.conf on boot drive:

country=CH
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
 
network={
	ssid="yourSSID"
	psk="yourWifiPassword"
	proto=RSN
	key_mgmt=WPA-PSK
	pairwise=CCMP
	auth_alg=OPEN
}

2. Put empty file called ssh on boot drive:

3. Find raspberry with the following command (*nix):

arp -na | grep -i b8:27:eb This works since all raspberrys MAC starts with b8:27:eb

4. Login with the default user pi and password raspberry

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