This guide uses a script that completes most of the steps. Want to install and run to completely manually? Then follow this guide.
- Get an SD-card (16 GB recommended) and install the Raspberry PI OS Lite (64-bit) Debian port using the Raspberry Pi Imager
- Make sure that you enabled
ssh
. - Make sure that your PI is connected to your local network.
- SSH into your PI.
- Password default: 'raspberry'
- Name default: 'raspberrypi#' (with the '#' being the version of your PI, e.g. 4)
ssh pi@<NAME-OF-PI>
- Change the default password (optional).
passwd
- Copy the setup script from your local machine to your PI.
rsync -r -e "ssh -p 22" <LOCAL-PATH>/raspberrypi-setup.sh pi@<IP-ADDRESS>:~
- Execute the script
~/raspberrypi-setup.sh
- During the execution of the script, the text editor
nano
will be opened so that you can make some changes to the parameters. You can save your changes and exitnano
by typingCTRL+O
,ENTER
,CTRL+X
. - If you do not have execution rights for the script then run the command below and try to execute the script again.
chmod 755 ~/raspberrypi-setup.sh
- During the execution of the script, the text editor
If you do not want an automated script to make all the adjustments, you can also follow the manual guide
If you want to update the befit image, simply run the raspberrypi-update-image.sh
script on your PI.