Last active
April 9, 2020 16:14
-
-
Save UXnomaan/324ceb2be12d5cd3077c27b3e308f47d to your computer and use it in GitHub Desktop.
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
| - Download the image to your computer: https://www.raspberrypi.org/downloads/ | |
| - Use Etcher to brun the ISO to your sd card: https://etcher.io/ | |
| - Create a `wpa_supplicant.conf` file: | |
| `sudo nano /etc/wpa_supplicant/wpa_supplicant.conf` | |
| - add the following to the `wpa_supplicant.conf` | |
| ``` | |
| network={ | |
| ssid="YOUR SSID" | |
| psk="YOUR PASSWORD" | |
| } | |
| ``` | |
| - Create an empty file called SSH in the root to enable SSH | |
| - Find the raspberry pi IP by logging in to your router | |
| - ssh to the pi `ssh pi@<PI IP>` with `raspberry` password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment