Raspberry Pi OS (bookworm) is out now, Pihole error "Unsupported OS detected, Debian 12"

I noticed today that the output from "$ dig +short -t txt versions.pi-hole.net @ns1.pi-hole.net" is now:

"Raspbian=10,11,12 Ubuntu=20,22,23 Debian=10,11,12 Fedora=36,37,38 CentOS=8,9"

I assume this means we can now install Pihole on Pi OS 12 Bookworm without needing any "unsupported OS" workarounds?

Yes. We have added Raspbian 12 (Bookworm) to our list of supported OS's. Within the last week, as I recall.

Try sudo nmtui for a terminal gui based setup utility that can do this, maybe it's easier.

The easy way to set a static IP on bookworm:

nmcli -p connection show
nmcli c "your-connection" ipv4.addresses 192.168.1.53 ipv4.method manual
nmcli c mod "your-connection" ipv4.addresses 192.168.1.53 ipv4.method manual
nmcli c mod "your-connection" ipv4.gateway 192.168.1.1
nmcli c mod "your-connection" ipv4.dns 192.168.1.1
nmcli c down "your-connection" && nmcli c up "your-connection"
nmcli -p connection show your-connection

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.