-
Notifications
You must be signed in to change notification settings - Fork 36
Frequently Asked Questions
The list of the current supported boards are located on an external page at https://sd-card-images.johang.se/.
Visit the external website at https://sd-card-images.johang.se/. Selecting your board on the page will take you to a page with a variety of downloads and instructions.
Just grab the file using any download tool you prefer. Try using curl, which is more commonly preinstalled on machines:
curl -O https://dl.sd-card-images.johang.se/debians/YYYY-MM-DD/debian-buster-arm64-XXXXXX.img.bin.gz
Otherwise install wget using your package manager.
Debian based Linux systems:
apt install wget
RHEL based Linux systems:
yum install wget
The zcat
and dd
commands are Linux commands. zcat
is available for Windows using Git Bash, mingw-w64, or Cygwin which comes with a terminal interface and C-libraries for Windows. But you can also extract the images using third party compression applications like 7zip or WinRAR.
Using PowerShell:
Invoke-WebRequest -Uri "https://dl.sd-card-images.johang.se/boots/2025-02-01/boot-raspberrypi_4b.bin.gz"
Invoke-WebRequest -Uri "https://dl.sd-card-images.johang.se/debians/2025-02-03/debian-bullseye-arm64-XXXXXX.bin.gz"
"C:\Program Files\7-Zip\7z.exe" e boot-raspberrypi_4b.bin.gz
"C:\Program Files\7-Zip\7z.exe" e debian-bullseye-arm64-XXXXXX.img.bin.gz
Get-Content "tmp.img" | Set-Content "sd-card.img"
Get-Content "ext4.img" | Add-Content "sd-card.img"
Then use an image flasher software like balenaEtcher to flash the image onto a memory card.
The root user password is defined lastly in the filename of the downloaded image. I.e. for debian-trixie-arm64-biexe4.bin.gz
the root user password is "biexe4".
The WiFi and Bluetooth libraries are not embedded with the releases for minimalistic reasons.
Your onboard Ethernet cable adapter should be fully functioning. Plug a cable into it and the board should automatically take you online. From there you can work your way into installing additional drivers and software.