Update README.md

This commit is contained in:
Beeranco 2023-08-14 16:23:59 +02:00 committed by GitHub
parent 95dc9bbf8e
commit 7e48cc6469
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,10 +2,14 @@
## Setup the SD card: ## Setup the SD card:
``` ```
Insert your SD card
Download the Raspberry Pi Imager: Download the Raspberry Pi Imager:
https://downloads.raspberrypi.org/imager/imager_1.7.5.exe https://downloads.raspberrypi.org/imager/imager_1.7.5.exe
After running the Raspberry Pi Imager press: CHOOSE OS After running the Raspberry Pi Imager press:
CHOOSE OS
Select: Raspberry Pi OS (other), Raspberry Pi OS Lite (64-bit) Select: Raspberry Pi OS (other), Raspberry Pi OS Lite (64-bit)
CHOOSE STORAGE: CHOOSE STORAGE:
@ -39,23 +43,25 @@ Otherwise read the section: Enabling wireless LAN
## Enabling wireless LAN: ## Enabling wireless LAN:
``` ```
Close the Raspberry Pi Imager.
Open a text editor on your system and paste the following: Open a text editor on your system and paste the following:
country=NL country=NL
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
network={ network={
ssid="YOURWIFINAME" ssid="YOURWIFINAME"
psk="YOURWIFIPASSWORD!" psk="YOURWIFIPASSWORD"
key_mgmt=WPA-PSK key_mgmt=WPA-PSK
} }
Change ssid= and psk= to your wireless LAN name and password. Change ssid= and psk= to your wireless LAN name and password.
Safe the file as wpa_supplicant.conf to the SD card labeled "boot" in your explorer. Save the file as wpa_supplicant.conf to the SD card labeled "bootfs" in your explorer.
Be aware to make sure there is no .txt extension in the filename! Be aware to make sure there is no .txt extension in the filename!
You can now eject the SD card, setup your Pi and boot from the SD card. You can now eject the SD card, setup your Pi and boot from the SD card.
Remember: you MUST use a LAN cable for the initial setup!!! Remember: you MUST use a LAN cable for the initial setup!!!
After running the installer you can disconnect the LAN cable!!! After running the installer in the last section of this readme you can disconnect the LAN cable!!!
``` ```