Install Raspberry Pi OS, Set Up Wi-Fi, Enable and Connect With SSH

by SuitableBat9 in Circuits > Raspberry Pi

2057 Views, 35 Favorites, 0 Comments

Install Raspberry Pi OS, Set Up Wi-Fi, Enable and Connect With SSH

sdfzgvdrf.jpg

In this tutorial, you’ll learn how to install the Pi OS operating system, set up Wi-Fi, and enable and connect with SSH. You can configure everything without the need for an extra monitor, keyboard, or mouse—the Raspberry Pi will be running headless.

Supplies

  • Raspberry Pi
  • At Least 16GB SD Card

Installing Raspberry Pi OS

1) Start by connecting the microSD card to your computer.

2) Go to the Raspberry Pi Software page.

3) Select and download the Raspberry Pi Imager (a tool to flash the OS on the microSD card) for your computer’s operating system.

4) Click on the downloaded file to install the Raspberry Pi Imager.

5) When the installation is complete, the Raspberry Pi Imager will open.

6) Click on Choose Device and select the Raspberry Pi board you’re using.

7) Click on Choose OS to select the Operating System. Select the Raspberry Pi OS (32-bit) or (64-bit).

8) Choose storage. You must choose the microSD card where you want to install the OS.

9) Click Next. Next, you’ll be asked if you would like to apply customisation settings. Click on Edit Settings to set up the Wi-Fi credentials, and enable SSH.

10) Under the GENERAL tab, you can set an hostname (the default will be raspberrypi), user, and password, and set Wi-Fi with your local network credentials, so that you can connect to your Raspberry Pi using Wi-Fi later on. You can also select your timezone.

Don’t forget to set your Wireless LAN country!

11) Then, click on the SERVICES tab and enable SSH with password authentication.

12) Click Save. You’ll be asked if you want to apply the OS customisation settings. Click YES.

13) Finally, you’ll be asked if you want to continue. Click YES to start burning the Raspberry Pi OS on the microSD card.

14) Wait a few minutes while it installs the Operating System.

15) When the installation is complete click on Continue. It will eject the microSD card safely.

15) Now, remove the card from your computer and insert it into your Raspberry Pi. Then, apply power to the Raspberry Pi to start it.

Connecting the Raspberry Pi to the Internet

If you’ve already set up the network credentials in the previous instructions, you can skip this section.


Remove the microSD card from your computer and insert it again so that your computer can recognize the microSD card again.

1) Create a new file called wpa_supplicant.conf and paste the following.

country=PT # Your 2-digit country code
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
network={
ssid="YOUR_NETWORK_NAME"
psk="YOUR_PASSWORD"
key_mgmt=WPA-PSK
}

Insert your 2-digit country code and the network credentials (SSID and password) of the network that you want the Raspberry Pi to connect to.

2) Open the microSD card folder and move the wpa_supplicant.conf file there.

Enabling SSH

If you’ve already enabled SSH in the previous instructions, you can skip this section.


To access your Raspberry Pi remotely (via a computer on your local network) so you don’t need to connect a monitor, keyboard, or mouse to the Raspberry Pi, you need to enable SSH. SSH allows you to connect to your Raspberry Pi remotely from another machine and access the command line.

To enable SSH, you need to create a file called ssh (without any extensions) on the boot folder of the microSD card.

1) You can click here to download the ssh file.

2) Move that file to the boot folder of the microSD card.

When the Raspberry Pi starts up, the OS will find the ssh file and will automatically activate SSH.

Now, safely eject the microSD card from your computer and insert it on the Raspberry Pi. Then, power up the Pi using a 5V DC power source.

A) Connecting Via SSH to the Raspberry Pi

SSH (which stands for secure shell) is a method of establishing a communication with another computer securely. All data sent via SSH is encrypted. SSH is based on a Unix shell, so it allows you to access your Raspberry Pi files from a remote machine by using terminal commands.

This part is divided into two sections: 

  • A) Windows
  • B) Mac OS X/Linux. (Skip To Step 5)

A) Windows

To communicate with the Raspberry Pi via SSH, you need a software to handle SSH communication. We’ll use PuTTY. You need to install it on your computer if you haven’t already.

Downloading PuTTY

If you use Windows, you need to download and install a free application called PuTTY. Here’s how to install it:

1) Open your web browser and go to www.putty.org

2) Download PuTTY. We recommend downloading the putty.exe file.

3) Run the putty.exe file to execute the software.

Connecting to the Raspberry Pi via SSH

With PuTTY installed, power up your Raspberry Pi and follow the next steps (wait at least five minutes before connecting if this is the first time the Raspberry Pi is booting up to give some time to load the operating system):

1) Open PuTTY.

2) Select/enter the following options:

  • Host Name: raspberrypi *
  • Port: 22
  • Connection type: SSH

raspberrypi is the default hostname. If you’ve inserted a different hostname in the installation process, you should use that instead.

3) Click Open.

4) When you connect to your Raspberry Pi for the first time, you’re prompted by a message warning you that you’re attempting to establish a connection with an unknown host. Simply click No to proceed.

5) Now, you need to login to your Raspberry Pi using the username and password you set on the installation process.

If PuTTY warns that the hostname doesn’t exist, you might need to find the IP address you can do this by going into your router settings and looking for the IP under Raspberry Pi. Then put that under Host Name

On the new window that opens, type your username and hit Enter.

6) Then, enter your password and hit Enter. You won’t see any characters showing up on the window while you type the password.

Now you have an SSH communication established with your Raspberry Pi. This will be useful to install software on your Pi, run your programs, create folders or files, etc…

Shutting Down

To shut down your Raspberry Pi, simply type this command on the command line:

pi@raspberry:~ $ sudo poweroff

The SSH connection will be shut down right after.

B) Mac OS X/Linux

SSH (which stands for secure shell) is a method of establishing a communication with another computer securely. All data sent via SSH is encrypted.

SSH is based on a Unix shell, so it allows you to access your Raspberry Pi files from a remote machine by using terminal commands. It has grown to be one of the most popular methods for communication between different devices.

Establishing an SSH Communication

In Mac OS X and Linux, you can use the default Terminal window to establish an SSH communication, because SSH comes in all Unix-based OSes. Follow these steps:

1) Boot up your Raspberry Pi.

2) Open a new Terminal window.

3) Type the following command:

$ sudo ssh pi@raspberrypi

or:

$ sudo ssh pi@raspberrypi.local

Note: if you defined a different hostname and username rather than raspberrypi and pi, you should use those instead.

4) Enter your computer password (so you can run a sudo command), and type yes.

5) When you’re asked to type a password for your Raspberry Pi type the password you’ve set previously, press Enter/Return.

When you connect your computer to your Raspberry Pi for the first time, you’re prompted by a message warning you that you’re attempting to establish a connection with an unknown host. Simply click OK to proceed

Your Terminal window should look like the Figure below:

Now you have an SSH communication established with your Raspberry Pi. This will be useful to install software on your Pi, run your programs, create folders or files, etc…

Shutting Down

To shut down your Raspberry Pi, simply type this command on the command line:

pi@raspberry:~ $ sudo poweroff