Project

General

Profile

Feature #953

Install PiHole on Debian

Added by Daniel Curtis over 3 years ago. Updated about 2 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Domain Name Server
Target version:
Start date:
12/08/2020
Due date:
% Done:

100%

Estimated time:

Description

This is a guide on installing PiHole on Debian.

Prepare the Environment

  • Update the system:
    apt-get update && apt-get upgrade
    
  • Install dependencies:
    apt-get install git
    
  • Edit the /etc/network/interfaces file:
    nano /etc/network/interfaces
    
    • And modify the file accordingly to set a static IP address:
      # The primary network interface
      allow-hotplug eth0
      iface eth0 inet static
            address 192.168.0.33
            netmask 255.255.255.0
            gateway 192.168.0.1
      
  • Apply network changes:
    service networking restart
    

Install PiHole

  • Download and run installer:
    git clone --depth 1 https://github.com/pi-hole/pi-hole.git Pi-hole
    cd "Pi-hole/automated install/" 
    bash basic-install.sh
    

Resources

#1

Updated by Daniel Curtis over 3 years ago

  • Status changed from New to Resolved
  • % Done changed from 0 to 100
#2

Updated by Daniel Curtis about 2 years ago

  • Status changed from Resolved to Closed

Also available in: Atom PDF