Setting up the Raspberry Pi

Connect to the preconfigured workshop Raspberry Pi via SSH.

Contents 2 sections

Starting Point

The Raspberry Pi OS has already been installed on the SD card.

Typically, this is done using the Raspberry Pi Imager, which allows configuration of settings such as Wi-Fi credentials, hostname, and passwords during the setup process.

In our case, these steps have already been completed for you, so the system is ready to use.

Instructions

  1. Insert the SD card into the Raspberry Pi and connect the Raspberry Pi to the power supply using the power adapter. An LED on the Raspberry Pi should light up or flash. It is best to wait a few minutes for it to boot up; the initial boot process takes longer. Do not disconnect it from the power supply during this time.

  2. Ensure that the computer is connected to the Wi-Fi network. Wi-Fi: birdnet-wifi, Password: rotkehlchen.

  3. Open the console (glossary)Text-based interface for sending commands directly to the operating system — also called command line or terminal. .

More information about the console Instructions for opening and operating the console.
  1. Connect to the Pi using the following command. Replace ‘00’ with the number on your Raspberry Pi.
Shell
ssh birdnet-admin@birdnet-rpi00.local
Terminal
PS C:\Users\Name> ssh birdnet-admin@birdnet-rpi00.local 
The authenticity of host 'birdnet-rpi00.local (2a02:4454:c122:2000:15gc:24b7:f06a:f322)' can't be established. 
ED25519 key fingerprint is SHA256:kfRttaVIh+Z/FbSq9g6adalVfIsgvUtk4o. 
This key is not known by any other names. 
Are you sure you want to continue connecting (yes/no/[fingerprint])?
  1. Confirm the connection.
Shell
yes
Terminal
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added 'birdnet-rpi00.local' (ED25529) to the list of known hosts.
Connection closed by 2a02:4454:c122:2000:15gc:24b7:f06a:f322 port 23
birdnet-admin@birdnet-rpi00.local's password:
  1. A password prompt should then appear. Enter the password mauersegler. Note that the password will remain invisible as you type it. If you are no longer prompted to enter a password, restart the process by entering the command from step 4.
Terminal
birdnet-admin@birdnet-rpi00.local's password:
Linux birdnetpi 6.12.47+rpt-rpi-v8 #1 SMP PREEMPT Debian 1:6.12.47-1+rpt1~bookworm (2025-09-01) aarch64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/\*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Thu Oct 01 00:00:00 2025 from 2a02:4454:c122:2000:15gc:24b7:f06a:f322
  1. You are now connected to the Raspberry Pi via SSH and can execute commands on the Raspberry Pi through the terminal.

  2. Now we will edit the Wi-Fi and hotspot settings, so continue with “Change the Wi-Fi settings”.