pi-hole:setup_pi-hole_running_in_ubuntu
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
pi-hole:setup_pi-hole_running_in_ubuntu [2020/11/16 16:11] – created peter | pi-hole:setup_pi-hole_running_in_ubuntu [2020/11/16 16:26] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Pi-Hole - Setup Pi-Hole running in Ubuntu ====== | ====== Pi-Hole - Setup Pi-Hole running in Ubuntu ====== | ||
+ | |||
+ | It is recommended to have a dedicated Ubuntu instance for pi-hole. | ||
+ | |||
+ | This could be an actual physical machine, or a VM. | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | So you do not need to allocate a huge amount of memory to this Ubuntu instance; 8G should be sufficient. | ||
+ | |||
+ | 20G of Hard disk space is also more than enough. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Update and Configure Ubuntu ===== | ||
+ | |||
+ | On the Ubuntu instance where you want to run pi-hole, run updates: | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt update | ||
+ | </ | ||
+ | |||
+ | Next install the ssh server: | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install -y openssh-server | ||
+ | </ | ||
+ | |||
+ | Now add a username other than the default. Just go through the dialogue and answer the prompts for the new user: | ||
+ | |||
+ | <code bash> | ||
+ | sudo adduser piuser | ||
+ | </ | ||
+ | |||
+ | Now grant the new user privilege: | ||
+ | |||
+ | <code bash> | ||
+ | sudo usermod -aG sudo piuser | ||
+ | </ | ||
+ | |||
+ | |||
+ | Ensure that you know the IP Address of this Ubuntu instance: | ||
+ | |||
+ | <code bash> | ||
+ | ip addr | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE**: | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== SSH into the Ubuntu ===== | ||
+ | |||
+ | Open a terminal back on your desktop computer and " | ||
+ | |||
+ | <code bash> | ||
+ | ssh piuser@192.168.1.25 | ||
+ | </ | ||
+ | |||
+ | Get root privileges in the command window: | ||
+ | |||
+ | <code bash> | ||
+ | sudo -i | ||
+ | </ | ||
+ | |||
+ | Install " | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install curl | ||
+ | </ | ||
+ | |||
+ | Now you can install pi-hole: | ||
+ | |||
+ | <code bash> | ||
+ | curl -sSL https:// | ||
+ | </ | ||
+ | |||
+ | Select the defaults until the DNS screen and then choose Cloudflare as your DNS. | ||
+ | |||
+ | * Accept all the rest of the defaults and be careful not to change them. This will assure that you get the admin web interface and that statistics are logged. | ||
+ | * The installation will continue for a few minutes after you answer the prompts. | ||
+ | * After your installation completes, you will receive a message telling you to set up the DHCP settings on your router to make the address of your Pi-Hole the primary DNS for your network. | ||
+ | * That will insert the Pi-Hole as the " | ||
+ | |||
+ | When you return to the prompt in the " | ||
+ | |||
+ | <code bash> | ||
+ | pihole -a -p | ||
+ | </ | ||
+ | |||
+ | You can now close the " | ||
+ | |||
+ | <code bash> | ||
+ | exit | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Go to your Pi-Hole Website ===== | ||
+ | |||
+ | Go to your web browser and enter the address of your Pi-Hole followed by /admin: | ||
+ | |||
+ | <code bash> | ||
+ | http:// | ||
+ | </ | ||
+ | |||
+ | Select the **login** option and you should be able to log in with the password you just set. | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | The pi-hole is also very lean and uses a minimal amount of system resources. | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | <WRAP important> | ||
+ | **IMPORTANT: | ||
+ | |||
+ | A good practice is to make the Pi-Hole DNS 1 and then Cloudflare 1.1.1.1 as DNS 2. | ||
+ | |||
+ | That will assure DNS translation when your Pi-Hole is not running. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
pi-hole/setup_pi-hole_running_in_ubuntu.1605543062.txt.gz · Last modified: 2020/11/16 16:11 by peter