Skip to content

Pi-hole | Update

Four easy steps are necessary to update your Pi-hole, in my case running on a Raspberry pi 3.

  1. Login via ssh:
    Bash
    ssh username@ip -p 22
    
  2. Fetch the latest version information of your repositories package list:
    Bash
    sudo apt-get update
    
  3. Download and install the latest version:
    Bash
    sudo apt-get upgrade
    
  4. Upgrade your Pi-hole:
    Bash
    pihole -up
    

I would always prefer to restart afterwards:

Bash
sudo shutdown -r now

Cheers!