The SD card works as the hard drive of your Raspberry Pi. As you know, every computer should have an operating system to manage.
The official operating system for Raspberry Pi is known as Raspbian. The Raspbian OS can be installed on the SD card.
The SD card works as the hard drive of your Raspberry Pi. As you know, every computer should have an operating system to manage.
The official operating system for Raspberry Pi is known as Raspbian. The Raspbian OS can be installed on the SD card.
Raspbian is the officially supported operating system for Raspberry Pi by the Raspberry Pi Foundation. Raspbian can be installed on Raspberry Pi through NOOBS, or as a standalone image:
You will need to use an image writing tool to install the image you have downloaded on your SD card.
Etcher is a graphical SD card writing tool that works on macOS, Linux,
and Windows, and is the easiest option for most users. Etcher also supports
writing images directly from the ZIP file, without any unzipping required.
You can download Etcher at https://etcher.io/:
The Raspbian Stretch Lite doesn't have any configuration settings enabled to work with the SSH protocol for secure remote login from another computer. Therefore, first you should create a configuration file to enable the use of the SSH protocol:
C:>i
i:>echo .ssh
SSH allows you to secularly log into the Raspberry Pi from your computer. PuTTY can be used to establish the connection between your computer and Raspberry Pi, and provides a terminal to run commands on Raspberry Pi. You can download PuTTY at http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html.
The following steps will show you how to use PuTTY on Windows:
login as: pi
pi@192.168.1.5's password: raspberry
Now you can configure the wireless connection to allow your Raspberry Pi to connect with your home or school Wi-Fi network. The following steps will guide you through how to configure the connection settings:
pi@raspberrypi:~ $sudonano /etc/wpa_supplicant/wpa_supplicant.conf
network={
ssid="testing"
psk="testingPassword"
}
network={
ssid="testing"
key_mgmt=NONE
}
network={
ssid="testing"
#psk="testingPassword"
psk=131e1e221f6e06e3911a2d11ff2fac9182665c004de85300f9cac208a6a80531
}
network={
ssid="yourHiddenSSID"
scan_ssid=1
psk="Your_wifi_password"
}
pi@raspberrypi:~ $sudo reboot
Refer to the following screenshot: