0474.html 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Install AdGuard Home Cross-Platform Pi-Hole Alternative on Raspberry Pi 4</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Pi-Hole,Networking,DNS,Alternative,AdGuard,Ad Blocker,Self-Hosted,Install Guide,Home Lab Ideas,Home Lab,Linux,SBC,Single Board Computer,Raspberry Pi,RPi,Pi,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Install AdGuard Home Cross-Platform Pi-Hole Alternative on Raspberry Pi 4">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="06/03/2023 02:07:23 PM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Install AdGuard Home Cross-Platform Pi-Hole Alternative on Raspberry Pi 4</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <h2>What is AdGuard Home?</h2>
  26. <blockquote><em>AdGuard Home is a network-wide software for blocking ads and tracking. After you set it up, it&#39;ll cover ALL your home devices, and you don&#39;t need any client-side software for that.<br />
  27. <br />
  28. It operates as a DNS server that re-routes tracking domains to a &ldquo;black hole&rdquo;, thus preventing your devices from connecting to those servers. It&#39;s based on software we use for our public AdGuard DNS servers, and both share a lot of code. -<a href="https://github.com/AdguardTeam/AdguardHome" target="_blank">https://github.com/AdguardTeam/AdguardHome</a></em></blockquote>
  29. <h2>Installing AdGuard Home</h2>
  30. <ol>
  31. <li>Log into the Raspberry Pi</li>
  32. <li>Run the following commands in a terminal window
  33. <div class="codeBlock"># download the latest adguard home release<br />
  34. wget https://static.adguard.com/adguardhome/release/AdGuardHome_linux_armv7.tar.gz<br />
  35. # extract the downloaded tar.gz<br />
  36. sudo tar xvf AdGuardHome_linux_armv7.tar.gz<br />
  37. # change directory into the extracted folder<br />
  38. cd AdGuardHome<br />
  39. # install AdGuardHome as a service<br />
  40. sudo ./AdGuardHome -s install</div>
  41. </li>
  42. <li>Open a web browser and navigate to http://DNSorIP:3000</li>
  43. <li>Click the Get Started button</li>
  44. <li>Set the Admin Web Interface and DNS Server network interfaces and ports &gt; Click Next</li>
  45. <li>Enter an admin username and password &gt; Click Next</li>
  46. <li>Click Next on page 4</li>
  47. <li>Click Open Dashboard on the Congratutations page</li>
  48. <li>Log in using the admin username and password created during the install</li>
  49. <li>Welcome to AdGuardHome</li>
  50. </ol>
  51. <p>Source: <a href="https://github.com/AdguardTeam/AdGuardHome#getting-started" target="_blank">https://github.com/AdguardTeam/AdGuardHome#getting-started</a></p> </div>
  52. </div>
  53. </body>
  54. </html>