Last active
December 6, 2020 07:22
-
-
Save StuffbyYuki/a3c4c53cb48d49f98e2558605fa2a9b0 to your computer and use it in GitHub Desktop.
RaspberryPi Setup - Simply Guide
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
1. Download raspberry pi image on your SD card. | |
2. Create a ssh file with empty content. | |
3. Create wpa_supplicant.conf file with the content below: | |
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
update_config=1 | |
country=<Insert 2 letter ISO 3166-1 country code here> | |
network={ | |
ssid="<Name of your wireless LAN>" | |
psk="<Password for your wireless LAN>" | |
} | |
4. Eject your SD card from your non-raspberry pi computer and insert it in your raspberry pi. Power your raspberry pi. | |
5. Do "ping raspberrypi.local" to get its local address. | |
6. Do "ssh pi@<what you got from above>". | |
7. Change password by typing "passwd". You can check your hostname by typing "hostname". | |
8. Do whatever you want from here ("sudo raspi-config" can be used to change settings on raspberry pi). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment