123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Installing Pi-Hole Ad-Blocker on Debian/Ubuntu</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Browser Based,Home Lab,Install Guide,Self-Hosted,Web Based,Web Based Tools,Ad,Ad Blocker,Ad Blocking,DNS,DNS Ad Blocking,Install Pi-Hole On Debian,Debian,Linux,Ubuntu,Pihole,Pi-Hole,Pi Hole,Networking,Network Wide Ad Blocking,Pi-Hole Installation Guide,Open-Source,Open Source,Network,FOSS,Free Open-Source Software,Free Software,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Installing Pi-Hole Ad-Blocker on Debian/Ubuntu">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="03/27/2022 12:44:34 PM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Installing Pi-Hole Ad-Blocker on Debian/Ubuntu</h1>
- </div>
- <div></div>
- <div id="content">
- <h2>Installing Pihole</h2>
- <ol>
- <li>Click the Applications button > Accessories > Terminal</li>
- <li>Run the following commands to install updates
- <div class="codeBlock"># update software repositories<br />
- sudo apt update<br />
- # install available software updates <br />
- sudo apt upgrade -y<br />
- # clean downloaded software downloads<br />
- sudo apt clean<br />
- # install pihole<br />
- curl -sSL https://install.pi-hole.net | bash</div>
- </li>
- <li>Press Enter until the DNS selection is displayed</li>
- <li>Select a DNS provider and press Enter</li>
- <li>Press Enter through the rest of the Pi-Hole installer, selecting the defaults</li>
- <li>Copy the randomly generated admin password (just in case)</li>
- <li>Press Enter to complete the installation</li>
- <li>Run the following command to change the Pi-Hole admin password
- <div class="codeBlock">sudo pihole -a -p</div>
- </li>
- <li>Enter and confirm the new password</li>
- <li>Click the Applications button > Internet > Chromium Web Browser</li>
- <li>Navigate to http://DNSorIP/admin</li>
- <li>Click Login</li>
- <li>Authenticate with the admin password</li>
- </ol>
- <h2>Testing Pi-Hole</h2>
- <ol>
- <li>In a web browser, open a new tab and navigate to https://yahoo.com</li>
- <li>Go back to the Pi-Hole tab and see that some DNS queries have been blocked</li>
- </ol>
- <p>More on Pi-Hole <a href="https://pi-hole.net/" target="_blank">https://pi-hole.net/</a></p>
- </div>
- </div>
- </body>
- </html>
-
|