Partner Content Pi-Hole Setup for Blocking Ads on Every Device

  • Welcome to ITBible, we're your #1 resource for enterprise or homelab IT problems (or just a place to show off your stuff).
This content was added by a IT Bible partner. See more information about our partner program here.

Ever wanted a way to block ads across all devices in your network? Why not try Pi-Hole. Don't have a way to start a lab at home, why not my referral link at Digital Ocean to get started with $200 in credit?

Official Docs: https://docs.pi-hole.net/main/basic-install/

Method 1 (Used in video):
Code:
curl -sSL https://install.pi-hole.net | sudo bash

Method 2:
Code:
git clone --depth 1 https://github.com/pi-hole/pi-hole.git Pi-hole
cd "Pi-hole/automated install/"
sudo bash basic-install.sh

Method 3:
Code:
wget -O basic-install.sh https://install.pi-hole.net
sudo bash basic-install.sh

Method 4:
Install from docker. See pi-hole documentation for that.