I just got my hands on “Raspberry Pi Zero 2W” today, let’s setup the Pi!
Setup the Pi
Make sure to use
pi-imager
for writing the OS into the microSD. Also use a router as well for easy-setup.
- Choose “Raspberry Pi OS 32-bit with no desktop environment” for the OS.
- Make sure to edit the username & password, SSID configurations, enable SSH using authentication, additonally note-down the hostname for
ssh
connection. - Insert the microSD into Pi Zero after the OS installation.
- Plug in the microUSB into Pi and wait for few seconds to boot up.
- Head inside the router web-page and look into the connected clients.
- Identify the hostname (default:“raspberrypi”) and note-down the IP address.
- Let’s
ssh
into the Pi!
ssh username@192.168.31.xxx
Now you are inside the Pi, please update & upgrade the packages in it for further installations.
sudo apt update && sudo apt upgrade
Let’s Assign a Static IP Address
- List the available networks
sudo nmcli connection show
This will show the available networks connected to your device. Output:
NAME UUID TYPE DEVICE
Wired connection 1 82aadf2b-xxxx-xxxx-a3ec-xxxxxxxxxxxx ethernet enp2s0
lo e6b49b80-xxxx-xxxx-b8d7-xxxxxxxxxxxx loopback lo
docker0 bfcf407f-xxxx-xxxx-bbfe-xxxxxxxxxxxx bridge docker0
- Modify the
Wired connection 1
network:
sudo nmcli connection modify "Wired connection 1" ipv4.addresses 192.168.31.xx/24 ipv4.gateway 192.168.31.1 ipv4.dns "8.8.8.8 8.8.4.4" ipv4.method manual
- Restart the Connection After modifying the connection, restart it to apply the changes:
sudo nmcli connection down "Wired connection 1"
sudo nmcli connection up "Wired connection 1"`
- Verify the New IP Address Check if the static IP has been assigned successfully:
ip addr show wlan0 | grep inet
- If you don’t need IPv6, you can disable it for this connection (Optional):
sudo nmcli connection modify preconfigured ipv6.method ignore
Let’s Install Pi-Hole and set things up!
- Install Pihole
curl -sSL https://install.pi-hole.net | bash
- Just keep clicking it! (stick with defaults)
- Make sure to note the password that will be generated at the end of the installation.
- Login to the web-page after the installation. (https://192.168.xxx.xxx/admin/)
Let the Pihole handle DHCP
- Disable the DHCP handled by your Router.
- Enable DHCP in pihole (Setting > DHCP )
- Enter the starting range -
192.168.xxx.100
- Enter the ending range -
192.168.xxx.200
- Enter the default gateway -
192.168.xx.x
- Enter the netmask -
255.255.255.0
Note: We’re letting
pihole
handle everything, such network level advertisement & tracker blocking and DHCP handling.
After this everything would setup properly and you’re good to go!