Updated on 3/26/2025

Raspberry Pi Zero 2W Specifications

  1. Quad-Core 64-bit Arm Cortex A53 @ 1GHz
  2. Only 512 MB (0.5GN) of LPDDR@ SDRAM
  3. Only Wi-Fi b/g/n (Only 2.4GHz) - Bluetooh 4.2 BLE
  4. Only 1 micro OTG [1] USB 2.0 Port
  5. Mini HDMI - 1080p @ 30 Hz
  6. C2 Camera Connector

References

  1. Wikipedia - USB On-The-Go

Current and Power

The Raspberry Pi Zero 2W draws current (& power) even when it is off. The following table is from reference [4]:

 OffIdleMax
Current50 mA100 mA 2.5 A
Power0.25 W0.5W 15 W

Thus, we need a 5 volt, 15 Watt power supply.

External 802.11n Radio

I found the same 802.11n raido as in the Offical Raspberry Pi tutorial, Host a Wi-Fi hotspot with a Raspberry Pi, on Amazon: Superwang Mini USB Wifi Wireless Adapter N for $5.98.

When I connected this adapter to a Zero 2W, the current increased approximately 100 mA. That is it almost doubled!

Zero 2W - Boot

The Zero 2W does not support network boot.

Raspberry Pi OS Lite - 64-bit

The Raspberry Pi Zero was introduced in 2015. However, it was not until 2022-02-02, that the 64-bit version of the Rasp Pi OS came out of beta. It is now fully supported in the imager.

You can also download it at:
 
https://downloads.raspberrypi.org/raspios_arm64/images/

When it boots up for the first time, it will prompt you to slect a keyboard (US English) and to create a username and a password. Then, it will reboot into the command line, and prompt you for your username and password.

For Headless Setup

sudo raspi-config

System Options -> Wireless LAN: Enter SSID and passphrase
System Options -> Hostname: the name you enter should be unique
Interface Options -> SSH -> Enable SSH
Localisation Options -> Locale -> en_US.UTF-8 UTF-8
Localisation Options -> Timezone -> US -> Eastern

When you exit raspi-config, it will ask you if you want to reboot. Click ok.

Software

The first thing you need to do is upgrade all packages:

sudo apt update && sudo apt upgrade -y

Upgrading the packages may take a while (less than 10 minutes).

VIM (Visual Improved Editor)

If you use vi, then you will probably want to install vim:

sudo apt install vim

Optionally, you can create a ".vimrc" (vim runtime configuration) file in your home directory. Mine is:

set showmode
set number
set shiftwidth=3
set expandtab
set autoindent
set wrap
set linebreak
set mouse=a
filetype plugin indent on
let g:html_indent_inctags="html,head,body,style,p"
syntax on
          

Network

Set a static ip address:

sudo nmcli con mod ipv4.method manual ipv4.address 192.168.xxx.xxx ipv6.method disabled

Set a gateway and dns servers:

sudo nmcli con mod ipv4.gateway 192.168.xxx.xxx ipv4.dns xxx.xxx.xxx.xxx,yyy.yyy.yyy.yyy

What a Zero 2W can do

What limits the Zero 2W, is that it only has 500 MB of RAM. Web browsers require more than this. However, you can still accomplish a lot with a Pi Zero 2W. For example, it can easly run Pi-hole with its excellent web server interface. You set up and access Pihole's data through a web browser on a another computer and Pihole serves the web page.

In the past Pihole used the webserver "lightpd" and the scripting language "PHP". Newer versions may have moved on to other web servers and scripting languages [6].

References:

  1. New product: Raspberry Pi Zero 2 W on sale now at $15
  2. Raspberry Pi Zero 2 W - Product-Brief & Data Sheet
  3. A deep dive into Raspberry Pi Zero 2 W’s power consumption
  4. Raspberry Pi Zero 2 W temperature and power consumption
  5. Arch Linux - Installation Guide # Local
  6. Web Server - Introducing Pi-hole v6

Bluetooth Speakers

Originally, the Raspberry Pi desktop sued Linux ALSA sound to communicate with audio hardware. Then, they switched to PulseAudio, and with Bookworm (10-11-2023) they switched to PipeWire.

I originally tried PipeAudio. It was inconsistance pairing with bluetooth. It took multiple attempts to get it to pair. This was very frustrationg. However, once paired it did work. Well after after a reboot, I did have reconnect ("bluetoothctl connect).

I installed pipewire and pipewire-audio on a clean lite OS:

sudo apt install pipewire pipewire-audio

Then I connected with bluetoothctl:

bluetoothctl scan on

Wait untill the MAC address of your bluetooth speaker appears, and then:

scan off

Copy the MAC address to the clip board, and issue the command:

pair B7:5C:86:74:58:30 # your mac address

It paired the very first time !

trust B7:5C:86:74:58:30 # your mac address

connect B7:5C:86:74:58:30 # your mac address

Pipewire solved all of my bluetooth problems including reconnecting !

To set the default volume of pipewire:

wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.4

To playback a wave file:

pw-cat --playback path/to/file.wav

Pule Audio

sudo apt install bluez bluez-firmware bluez-tools

On the Lite 64-bit OS, bluez and bluez-firmware were already installed.

sudo apt install pulseaudio-module-bluetooth

sudo apt install espeak

Sound

Originally, the Raspberry Pi desktop sued Linux ALSA sound to communicate with audio hardware. Then, they switched to PulseAudio, and with Bookworm (10-11-2023) they switched to PipeWire.

wpctl set-volume @DEFAULT_AUDIO_SINK@ 0.4

References

  1. Youtube - How To Connect to a Bluetooth Speaker using the Linux Shell
  2. StackExchange - Raspberry Pi 4 won't pair to bluetooth devices
  3. StacKExchange - How to set up automatic connection of bluetooth headset?
  4. How-to-Geek - Have Your Linux Terminal Read to You With the espeak Command
  5. pw-cat - Man Page
  6. StackExchange - crontab environment
  7. Raspberry Pi: How To Search For & Change Wi-Fi Networks Via Command Line Interface
  8. Red Hat - Ping command basics for testing and troubleshooting

SD Card Reader/Writer

All of th micro sd card readers/writers that came with my Raspberry Pi kits were USB 2.0; ditto for readers/writer that were bundled with micro SD cards orders. I finally order a ScanDisk USB 3.0 reader/writer from Amazon ($10), and what a difference it made.

  USB 2.0 USB 3.0
Raspberry Pi Lite 5:30 1:04
Raspberry Pi Desktop    

Simulanteous Wifi Client & Access Point

References

The following will give you detailed information about the capibilites of your wireless radios.

iw list

    https://raspberrypi.stackexchange.com/questions/143102/raspberry-pi-zero-2-w-simultaneous-ap-and-client
  1. Raspberry Pi Zero 2 W simultaneous AP and client
  2. Raspberry Pi Zero 2W - AP-STA mode
  3. Simultaneous AP & Client On The Pi Zero W
  4. Using your Raspberry Pi Zero’s USB wifi adapter as both Wifi client and access point

Pi Zero 2W - Command Line Imager

References

  1. How to Access Raspberry Pi Imager from the Terminal
  2. Youtube - How to mount a USB storage device to a Raspberry PI Zero 2 w