Testing Pi-Hole on a VM (Part III - Conclusion)
Part 3 In the previous two parts, I demonstrated setting up a VirtualBox VM environment and installing CentOS 7 minimal on a test VM. I covered some of the details around VM sizing and network configuration along the way. Now in this post, I'll cover the details of installing and configuring the Pi-Hole software itself on your test VM. If you have questions or issues, please post them in the comments and I'll follow up to try and help you out. Installing Pi-Hole Boot up your CentOS 7 VM and log in as root. Now type the following to launch the Pi-Hole installer: curl -sSL https://install.pi-hole.net | bash This command gives the Pi-Hole installer full access to the bash command shell, allowing it to have full control of your VM. It is certainly a questionable method to install software, but it is simple and fast, and for the purposes of this demonstration, we can feel free to use it to quickly set up our system. The first thing that we se...