I assume that the user has a Raspberry Pi 3 and Raspbian OS installed on a microSD card.
Plug the microSD card in the PC and go to root partition.
The first step is to set the appropriate configuration that allows to automatically use the wireless interface.
Backup etc/network/interfaces then edit it and overwrite it with the following content:
This file contains 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
# interfaces(5) file used by ifup(8) and ifdown(8) | |
# Please note that this file is written to be used with dhcpcd | |
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf' | |
# Include files from /etc/network/interfaces.d: | |
source-directory /etc/network/interfaces.d | |
auto lo | |
iface lo inet loopback | |
allow-hotplug eth0 | |
iface eth0 inet manual | |
auto wlan0 | |
allow-hotplug wlan0 | |
iface wlan0 inet dhcp | |
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf |
Backup etc/wpa_supplicant/wpa_supplicant.conf then edit it and append the following content:
This file contains 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
network={ | |
ssid="<SSID>" | |
psk="<WPA-PSK>" | |
} |
The right values ssid and psk should be put in there, of course.
Put the microSD card in the Raspberry Pi and plug the power supply. When the green LED stops fluttering, open an ssh session to pi@raspberrypi.local, the password is raspberry. If the configuration and the connection are well set, ssh should work fine.
In the end, don't forget to properly shutdown the Raspberry, for example using this command:
sudo shutdown -h nowAnd wait until both the green and the red LEDs are continuously on to unplug the power supply.
Happy tinkering!
No comments:
Post a Comment