Last active
January 18, 2018 10:28
-
-
Save Deliaz/be7c104a1e3c77f35fc458518bfc49ec to your computer and use it in GitHub Desktop.
Help note to configure WiFi and SSH on SD card
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /Volumes/boot | |
nano wpa_supplicant.conf | |
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
network={ | |
ssid="YOUR_NETWORK_NAME" | |
psk="YOUR_PASSWORD" | |
key_mgmt=WPA-PSK | |
} | |
touch ssh | |
### | |
sudoedit /etc/apt/apt.conf.d/99force-ipv4 | |
Acquire::ForceIPv4 "true"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment