World's Greatest Pi-hole Tutorial - Easy Raspberry Pi Project!

Sdílet
Vložit
  • čas přidán 25. 08. 2024

Komentáře • 659

  • @s80keys
    @s80keys Před rokem +62

    Some of your older videos are the reason I got into raspberry pi’s to begin with. I ended up putting pi-hole on a VM with minimal resources and it has worked fine for the most part. In addition to appropriate firewall rules, I am also using pi-hole on my IoT network to a) block unnecessary traffic, and b) monitor where my devices are trying to communicate to.

  • @LATerr0r
    @LATerr0r Před rokem +17

    You and people like you are hero's of the internet. Posting tutorials on things like Pi-hole or some random person with a video that has 9 views on how to change windshield wipers on a '83 Nissan Sentra lol. The internet is amazing once you learn how to block out all the noise. Thank you ✌

  • @CJ-ur3fx
    @CJ-ur3fx Před 10 měsíci +9

    Just followed this, I’m a Linux noob, and managed to get this up and running on my original RaspberryPi 1 B. It works perfectly. Well, apart from my cruddy ISP router not allowing my to change DNS, so I’ve had to change DNS on all my attached devices.
    Discovered my Samsung TV connects to the internet twice every 5 seconds, even when it’s on standby!
    EDIT: April 2024 : The new versions of raspberrypi installer has a couple different options now, but this video is still completely 'followable' even if a couple things you have to click are in slightly different locations. Once its all installed the web-dashboard to use the pihole looks 99% the same as the video.

    • @xxkinetikxx
      @xxkinetikxx Před měsícem

      Hey! I had the same issue with my ISP. I just disabled DHCP on the router and enabled it on the Raspberry Pi. (Also the original B version). Running great!

    • @omardude39
      @omardude39 Před měsícem

      Samsung TV is probably polling the SmartThings server in case you have given it an app command to turn on/off

  • @billybunt3716
    @billybunt3716 Před rokem +26

    What a fantastic tutorial, i found this really easy to follow. thank you for the time that went into making this.

  • @panoshountis1516
    @panoshountis1516 Před rokem +15

    Excellent video. Although I am running pihole on my network for past 3 years, this was of real value. Thank you!

    • @OH2023-cj9if
      @OH2023-cj9if Před 8 měsíci

      Do a DNS leak test, you will find it's probably not working! There was a fault causing pihole to constantly write to SDcards and it destroyed them within months. Your system would still work, but use your ISP DNS.

  • @JimmyKumbaya
    @JimmyKumbaya Před rokem +18

    Nice thorough coverage.
    Temporarily disabling blocking involves more than simply clicking on the menu choice. Since browsers cache DNS lookups, you'll need to either let the browser cache expiration kick in or manually clear it: simply hitting refresh on a site that PiHole has just blocked won't work.
    Also, some ISPs' routers won't split DNS off from DHCP: in order to run your own DNS, you'll need to run your own DHCP, too. PiHole can do that, maybe it'd be worth a follow-up video?

  • @pe1pqx321
    @pe1pqx321 Před rokem +10

    Excellent tutorial! At the beginnign I ran only 1 Pi-Hole, but upgraded and added a 2nd.
    I have setup 2 Pi-Holes, one for primary DNS (Pi-Hole1) and one for secondary DNS (Pi-Hole2)
    Pi-Hole1 also runs Unbound. Pi-Hole2 uses Unbound on Pi-Hole1
    My Android smarthphone (Samsung) somehow bypassed Pi-hole when I was using only 1 Pi-Hole. Now with 2 P-Holes even less adds (with the same blocklist on both Pi-Holes) etc. on my Samsung and other LAN clients.
    You might want to check that one it if you find this it interesting....
    Also my ISP does have IPv6 enabled (1Gbit fiber) and both of my Pi-Holes do cover that route very nicely.
    One advice might also be: regularly check and upgrade/update Pi-Os itself ( sudo apt update && sudo apt upgade ) just to be sure the Pi Os is running fine.

  • @KevinFlynn1967
    @KevinFlynn1967 Před 8 měsíci +2

    Great tutorial for an average homeowner/home network admin! I just installed this on an old Pi 3 I had and my CPU/Mem up and running is 2.1%/0.9%. Looking forward to more videos! thank you!!!

  • @michael0047
    @michael0047 Před 5 dny

    This is one of the best instructional videos I have found online. I was up and running in about an hour. Excellent.

  • @PCman50
    @PCman50 Před rokem +2

    I've been using Pi-Hole for awhile now, but never spent the time to fully learn or tweak it. So Thank you for this most excellent tutorial.

  • @BenReese
    @BenReese Před rokem +8

    Great video! I've been using PiHole for several years - first on a Pi, then on a VM, and now in Docker. Always room for improvement in my setup though, so I'll be coming back to this.

  • @DennisonsThe
    @DennisonsThe Před rokem +4

    Your videos are the best videos out there for tutorials on technology! You make things easy to understand and you do a great job explaining how to set things up. Most tutorials on technology just aren't that helpful! They may know the technology, but they don't explain it so that we novices can understand it. Thanks!

  • @MichaelBartosh
    @MichaelBartosh Před 4 měsíci +35

    I just attempted to use this tutorial and discovered that the file referenced the step "Set a Static IP Address" Option 2 - Set a Static IP on the Raspberry Pi is NOT THERE ANYMORE! (specifically sudo nano -w /etc/dhcpcd.conf ends up creating a NEW file, there was no file to edit!) ☹

    • @garrettfreddo6416
      @garrettfreddo6416 Před 4 měsíci

      Did you resolve this?

    • @MichaelBartosh
      @MichaelBartosh Před 4 měsíci

      @garrettfreddo6416 yes. I posted the response in a separate comment.

    • @squeekienuts7854
      @squeekienuts7854 Před 3 měsíci +9

      I’m not sure how to view your comment history and cannot find a method online to do so. Can you please elaborate on what you did here?

    • @MrArkaneMage
      @MrArkaneMage Před 3 měsíci

      @@squeekienuts7854 Found the answer guys, you need to check the name of your connection (if set up via the imager it should be "preconfigured") and then manually set it with the following command: (replace the "(dot)" with a real dot)
      sudo nmcli c mod "nameOfConnection" ipv4(dot)addresses yourNewIpAddress/24 ipv4(dot)method manual
      after you need to restart the connection with the following command:
      sudo nmcli c down "nameOfConnection" && sudo nmcli c up "nameOfConnection"
      the exact guide is to find on abelectronics website, search for
      "Set a static IP Address on Raspberry Pi OS Bookworm"
      yw :)

    • @MysticNode626
      @MysticNode626 Před měsícem

      Basically you need to install dhcpcd

  • @Swidly-vy6zi
    @Swidly-vy6zi Před 11 měsíci +1

    Oneof the best channels out there for networking and home automation.

  • @palmacas.
    @palmacas. Před rokem +1

    Great tutorial, now I have my old Raspberry Pi Model B+ running pihole at home. Thank you!

  • @19dines77
    @19dines77 Před rokem +1

    finally found a tutorial who tell only what i needed, Indeed the world best pi-hole tutorial in the globe.

  • @beatroot_red
    @beatroot_red Před 5 měsíci

    I'm a complete computer idiot but I followed your tutorial step by step and made that thing work. Thank you very much. I'm also super proud of myself :)

  • @Mr.Unacceptable
    @Mr.Unacceptable Před rokem +2

    I found a power cord for other USB devices that has a battery in the cable. You can unplug your Pi for up to 4-6 hrs without powering it down. Also a battery backup for power outage. The batteries are 2x 18650's for the small one and 4 for the big one. Found it so handy for myself when working with the Pi. Get batteries from old drill batteries. Usually only 1 or 2 that are dead. The rest will have lots of life.

  • @redraidermathias5439
    @redraidermathias5439 Před rokem +8

    This was a great video because FINALLY, I found something that was detailed and step-by-step especially on the SSH part. However, I wish there was a lot more guidance/details on the Static IP Address part specifically on Option 2 because unfortunately, I have a Netgear router and it's ALWAYS a nightmare trying to log onto the Admin page. Now, after trying out the 2nd option, I need to restart from the very beginning, because I nuked the IP address and I don't even have one anymore when I use "ip a" to find it.

    • @cl-7832
      @cl-7832 Před 10 měsíci

      On my Netgear router I reserve the 192.168.2-10 as static IP addresses. In PI set your address in config to one of those hosts. Then you can rout your traffic through it and not worry about it changing.

  • @mondskiez309
    @mondskiez309 Před rokem +1

    I have 3 piholes deployed on the cloud for redundancy for my personal open dns server.. works like a charm for 4 years now..
    Blocking 3M baddies.. A little pruning and troubleshooting here and there is needed from time to time to fix legit but obscure sites/apps to load properly, otherwise works like clockwork..

  • @NickMach007
    @NickMach007 Před rokem +2

    Great tutorial. Got it all up and running on an Orange Pi Zero2. Thanks so much for your work!

  • @stanislavtodorov8705
    @stanislavtodorov8705 Před 8 měsíci +1

    Amazing content, man. First time on your channel and in 40min I answered 90% of the questions regarding Pi-hole. Thanks for the easy to understand video.

  • @volcano444
    @volcano444 Před rokem +1

    Hi Chris
    I remember an earlier Crosstalk Solutions video or two where a younger Chris said I don't want to make a Pi-hole video 🙂
    But thank you very much for making one and the many Ubiquiti videos. I'm a big fan 🙂

  • @thedr00
    @thedr00 Před 3 měsíci

    This was awesome. Grotesquely helpful in fact. I'm so grateful for your generosity in sharing this and the accompanying blog.

  • @radioxpert
    @radioxpert Před 6 měsíci +4

    Thank you for such excellent tutorial, so far is the most thorough and comprehensive that I have seen.
    Prior Pi-hole installation, I ran into a small problem; for some reason when I issue the command: "sudo nano -w /etc/dhcpcd.conf" it comes out empty, like it doesn't exist, so I had to go with the option 1 of letting the router's DHCP assign me whatever IP address it wanted and reserve it. I typed the command: "ls" and "dhcpcd.conf" is not shown on the home directory. Where is this file located?
    I'm using a Raspberry Pi 4 w/ 4GB and Raspbian lite 64.
    Thank you

    • @jackiechan8840
      @jackiechan8840 Před 6 měsíci +3

      I just had this exact issue.
      GNU nano 7.2

    • @philiptibitoski3437
      @philiptibitoski3437 Před 5 měsíci +2

      I have the same issue. The file doesn't seem to exist (at least not in this directory) and instead nano created a new blank file.

    • @MichaelBartosh
      @MichaelBartosh Před 4 měsíci

      Same problem!

    • @jackiechan8840
      @jackiechan8840 Před 4 měsíci +1

      ​@@MichaelBartosh I did get to work, think I just did it manually changing router settings.

    • @MELL09494
      @MELL09494 Před 2 měsíci

      Does anyone anyone have any update on this?

  • @wereldvandenluuk
    @wereldvandenluuk Před 9 měsíci +1

    Thanks a million. I was a bit skeptical in the beginning, since it was my first raspberry pi project but everything turned out fine in the end. 😊

  • @hughknight9084
    @hughknight9084 Před měsícem +1

    Confirming this method still works fine. Only difference I found was that the 'Settings' wheel isn't in the bottom right of the Pi Imager anymore. It is now a pop-up that pops up before writing the OS onto the Pi. You have to go into 'Advanced settings' to get to the settings page. I had issues with SSH on my Pi. The issue turned out to be me trying to SSH into the wrong device as I was using an IP Scanner that didn't show the Pi, and I had to guess from the list of shown devices which one it could be. Logging into my router showed the Pi as 'Raspberrypi', which gave the correct IP next to it, and problem. I can now SSH into my Pi from Putty and from Raspberry Controller on Android with no issues.

  • @CT77
    @CT77 Před rokem

    Super helpful! My brother took the pihole with him when he moved out and now I have my own all set up!

  • @jrose92081
    @jrose92081 Před 2 měsíci +1

    I have sent several people to this video. I do IT for a hospital and swear by having one of these in my home network.

  • @johnpeelslovechild
    @johnpeelslovechild Před 7 měsíci

    The tip to turn on SSH when writing the image was gold. Thank you!

  • @ICE-Rouge
    @ICE-Rouge Před 23 dny

    I got it all set-up thanks to your guide! Thanks!

  • @odhiambo0
    @odhiambo0 Před rokem

    The first ever exhaustively done pihole tutorial. Thank you.

  • @jsutcliffe
    @jsutcliffe Před 4 měsíci

    You've made an intimidating process very easy to follow. Thank you so much.

  • @keithdixon3780
    @keithdixon3780 Před 3 měsíci

    Finally, a comprehensive tutorial that actually works!!

  • @naylor2006
    @naylor2006 Před 7 měsíci

    Excellent tutorial and blog, just got a new Pi4 installed with Pi-Hole, my first Pi was for an OpenVPN server so actually ive only got around to Pi-Hole after getting a 4th Pi :)
    My wife was excited for it because of avoiding tracking when booking flights/hotesl etc.
    Ive left unbound for now, think ill test out the default setup for now!
    Thanks Chris.

  • @IamDerick
    @IamDerick Před rokem

    Thanks for explaining the "Why" in your steps. Cheers.

  • @ONE_OF_300
    @ONE_OF_300 Před rokem +1

    Thanks for the tutorial, followed it and have a first time setup and use of pihole. Loving it so far! Thanks again!

  • @MrBassistfromhell
    @MrBassistfromhell Před rokem

    Thanks a ton! I'm glad I checked this out. I've been using pihole for years, but there's still a lot I pulled out of the video. Especially the disable link. I set up a toggle helper in home assistant, and exposed that to google home. I added a rest_command in home assistant with the shutdown link, and set up an automation to trigger that when the helper is toggled.
    I can just yell at google to shut Pihole off now! Thanks again!

  • @BigKiwiBBQ
    @BigKiwiBBQ Před 5 měsíci

    Fantastic content! Thank you so much for this video, I finally have my Pi Hole up and running! YOU ROCK!!!

  • @volksy67
    @volksy67 Před 10 měsíci

    Amazing tutorial! I have Pi-Hole running on a Proxmox Virtual Environment at the moment but I have an extra PI 4....Perfect! Side note.....I have named my neighbor "Worker Bee" as when I am doing things that are sound sensitive he pulls out all kinds of power tools and such Madness!

  • @milbrandtj
    @milbrandtj Před 7 měsíci

    Knowledge is power, thank you so much for taking the time to record and provide this tutorial!

  • @alliejr
    @alliejr Před rokem +2

    Per Eben Upton (recent interview on Explaining Computers CZcams channel), Pi 3A+ models are being prioritized for retail. I use them all the time as servers. Perfect for this function and available.

  • @adrianmares269
    @adrianmares269 Před rokem

    Tested this in Linode on a nanode and it works perfectly fine, thank you. I'll try to set it up on the raspberry pi

  • @francnuke
    @francnuke Před 8 měsíci

    Bless this man's soul

  • @robindavey1920
    @robindavey1920 Před rokem +6

    Hey Chris, great video (as always), any chance of an additional one detailing DoH setup for pihole? or a link to a good example of getting it up and running? All resources I've found so far seem to be out of date at this time :(

  • @DougguoD
    @DougguoD Před 9 měsíci

    30:05 After reading/viewing several many tutorials like this one, I found setting the router's dns server to the raspberry pi (pi-hole) didn't work. I did manage to get everything working up to that point - but no queries to be had. Eventually I decided to manually configure each computer's set up as described at 28:58. And yeah, probably could have just set the preferred DNS server, but hey, working Pi-hole! Afterward, did see a written Mac tutorial that did mention setting this up on individual computers - the only one I'd seen 'till this vid that mentioned it as all others only said static for the Pi-hole device itself. Glad to see someone else noting this as it is what eventually worked for me.

  • @bokami3445
    @bokami3445 Před 10 měsíci +1

    Late to the party but just wanted to say Great video (and thanks for the video and tutorial page). Can't wait to turn my Pi3 into something useful. Subscribed & Thumbs Up

  • @TimmyTechTV
    @TimmyTechTV Před rokem

    Woooooooo, updated Pi-Hole video!!!!

  • @PFBzzz
    @PFBzzz Před rokem

    Nice. Video... i've been using PiHole for a while now, but picked up a few additional tweaks and added unbiound.... Thanks!

  • @Faketaxie
    @Faketaxie Před dnem

    Thank you

  • @conradpreen2368
    @conradpreen2368 Před 5 měsíci

    Great tutorial! Got my Pi-hole running in no time

  • @jimpayne782
    @jimpayne782 Před 23 dny

    Thanks! Great Tutorial.

  • @chrisrichardson9777
    @chrisrichardson9777 Před rokem

    The best tutorial I have found so far! In my case, the "configurator" of the Imager did not activate my ssh. I had to cd /boot and do a "sudo touch ssh" before raspi would even let me in.

  • @epd807
    @epd807 Před 6 měsíci

    Great tutorial! Thank you for taking the time to make it.

  • @geetee2072
    @geetee2072 Před rokem

    It is the Greatest Raspberry Pi tutorial ever Thanks mate!

  • @VinceWarhol
    @VinceWarhol Před 5 měsíci

    Great video! It helped me immensely! Donated to your beer fund. Keep up the good work!

  • @Kaze919
    @Kaze919 Před 2 měsíci

    This is a great tutorial. I’ve set up an Apple HomeKit automation using Homebridge and Home Assistant so I can just ask Siri to turn off the PiHole.

  • @markbooco1719
    @markbooco1719 Před rokem

    Excellent tutorial on PiHole and DNS! Thank you!

  • @SpyHeli
    @SpyHeli Před 6 měsíci

    This is what i was looking for, you made my day :-) everything worked like a charm.

  • @preacherplays
    @preacherplays Před 8 měsíci

    I really enjoyed how thorough you are.

  • @artvandeleah9952
    @artvandeleah9952 Před 7 měsíci +1

    Thankyou for your help. I setup the unbound server with pi hole and added more domain block lists. QUESTION: can you make a video on HOW do you setup pi hole with unbound forward to CLOUDFARE or QUAD 9?

  • @alonzosmith6189
    @alonzosmith6189 Před rokem +1

    Nice tutorial, I used Pi-hole on my vlan for IoT devices and the van for Guest

  • @markito0317
    @markito0317 Před rokem

    Best tutorial in the world.

  • @qbertatx
    @qbertatx Před rokem

    This is in fact the world's greatest Pi Hole tutorial! Thanks👍

  • @SondelaConsulting
    @SondelaConsulting Před 4 měsíci

    This is amazoing. Thank you for doing this . I have subscribed and liked !!! keep up the good work man

  • @vijgai3
    @vijgai3 Před rokem +1

    Very good video. I used to run PiHole on my network (without Unbound). However I have now switched to NextDNS. NextDNS now has CLI client support for OPNSense which is my router/firewall. One less thing to maintain.

    • @fuckyoutubehandless
      @fuckyoutubehandless Před rokem +1

      You can also use it and specific configs on most any device. This means your phones or laptops can be protected no matter where you go.

  • @lukekaram7848
    @lukekaram7848 Před rokem +4

    I wish you did this video sooner! I’ve been struggling getting mine up and running. I managed to get it working but it completely blocks CZcams, Netflix, etc. not sure how to get around this but keen to try again

    • @alonzosmith6189
      @alonzosmith6189 Před rokem +2

      You can whitelist the streaming site, Netflix, etc

    • @lukekaram7848
      @lukekaram7848 Před rokem

      @@alonzosmith6189 I tried that but it didn’t seem to help at all. Must have been some small setting somewhere so it’s best to reformat and start over 😅

    • @CrosstalkSolutions
      @CrosstalkSolutions  Před rokem +3

      There's a great resource for commonly whitelisted services in the Pi-hole documentation - check it out, and then look up the services being blocked - you'll likely find the answers there.

    • @TheKingsComingAlefTav
      @TheKingsComingAlefTav Před rokem +1

      @@CrosstalkSolutions The most important thing I want to do is to be able to block ads inside of Google Chromecast such as CZcams when they play their filthy ads or the news channels that inject ads in the middle

  • @likebot.
    @likebot. Před 3 měsíci +1

    I'm finding the instructions easy to follow even though with a year of changes the instructions are dated but easy.
    However when I update and upgrade it runs a dozen lines and hangs (entered _sudo apt update && sudo apt upgrade -y_ and a few lines later I get this in yellow text: _3% [6 mount 64.8 kB/134 kB 48%] [5 dpkg 14.2 kb/1,520 kB 1% ▓_ and the pi kacks, the LED on it turns from green to red. Being a total n00b with a Pi and Linux the learning curve is almost 90 degrees rn.

  • @TREXYT
    @TREXYT Před 7 měsíci

    Awesome video but for the DHCP we should make it static on router and enable it on pi hole ?

  • @TheHaakiiz
    @TheHaakiiz Před měsícem

    Thanks! Good and easy to follow! I didnt hear the leaf-blower!

  • @crewdawg16
    @crewdawg16 Před 4 měsíci

    This is a masterclass, thank you

  • @madaddies
    @madaddies Před rokem

    Thanks for the tutorial, it's all working great now!

  • @leefelske9999
    @leefelske9999 Před rokem

    Yup minimal resources, i use a full Raspberry Pi 4 w/4GB at my company with a UDMSE and 15 switches and fiber backbone, but at home i use a Pi Zero running Diet Pi and the Pi Hole software and it doesnt skip a bit on my home UI network .

  • @BigBoyJay_69
    @BigBoyJay_69 Před rokem +2

    Great tutorial! One thing I wish you would have mentioned: When you login to SSH, the password doesn't show up. I thought I was screwing something up, but I guess that's a security feature. It threw me off for a while.

  • @SteveFulemule
    @SteveFulemule Před rokem

    super easy and straight forward to work out of this tutorial. thanks Chris!

  • @sandman_oO
    @sandman_oO Před rokem

    Works great on my Raspberry Pi B.

  • @shalamigri
    @shalamigri Před měsícem

    Great tutorial. Easy to follow. However, I have a stubborn Windows 11 laptop that doesn't want to work well with Pihole. I can't even access the Internet on the PC when using pihole as a DNS server. Everything (other devices) else seems to be working fine though.

  • @MarcosDFANP
    @MarcosDFANP Před 7 měsíci

    Excellent. Amazing Tuto! thank's for sharing

  • @kevinvanderlei3271
    @kevinvanderlei3271 Před 5 měsíci

    Fantastic video! Thank you!

  • @ThePinson101
    @ThePinson101 Před 7 měsíci +1

    @27:35 "star WARS tv series" - I'm triggered!
    Seriously though, thank you for a great tutorial!

  • @WillZahra
    @WillZahra Před 4 měsíci

    Star Wars!? It's Star Trek! haha Great video - I'm looking forward to setting up this project for myself.

  • @simplefi1
    @simplefi1 Před 6 měsíci +1

    for static eth0 you need to edit /etc/network/interfaces and add auto eth0 ............

  • @qpwodkgh2010
    @qpwodkgh2010 Před 8 měsíci

    Got it working. Thanks.

  • @tankareno
    @tankareno Před 8 měsíci

    For some reason it took three tries for the pi to recognize I set a static ip for it in my router. It works now. It is a old pi too, 32-bit.

  • @nottimbo
    @nottimbo Před rokem

    Loving that eth cable art.

  • @AskaLangly
    @AskaLangly Před 3 měsíci

    There's a Stream Deck plugin now. I like that.

  • @ws_media5435
    @ws_media5435 Před rokem +1

    Hey @Crosstalk Solutions thank for the video! I love your stuff keep going!
    How do I set this up in the unifi new UI?
    Mind doing one more video with going in more depth and maybe some firewall rules? 😅

  • @donaldbarrett4073
    @donaldbarrett4073 Před 9 měsíci +4

    PSA: If you're following the tutorial directions to the letter and your SSH is being refused once you get to the part where you SSH into your Pi, try adding a blank txt file named ssh to the boot folder. This is easiest to do after you've imaged the Pi, but before you remove the SD card from your computer.

    • @lipinapple
      @lipinapple Před 9 měsíci +1

      Thanks so much, this helped. Online forums explaining the same issue did not help but this did the trick!

  • @1290DR
    @1290DR Před 4 měsíci

    Thanks man, awesome tutorial - love it

  • @jasonperry6046
    @jasonperry6046 Před rokem +1

    I also use Steve Gibson's DNS benchmark to help choose my DNS server

  • @DCxALBRECHT
    @DCxALBRECHT Před rokem

    good refresher! thanks for video!

  • @aka.radstatic
    @aka.radstatic Před rokem

    always find your videos so informative and educational. thank you for doing so much of the leg work! 😅

  • @QuaaludeCharlie
    @QuaaludeCharlie Před rokem +1

    This was Helpful , Thank You :) QC

  • @Robertjaymercer
    @Robertjaymercer Před rokem +1

    Very nice tutorial. Very clear and well explained, thank you sir!

  • @BrianThomas
    @BrianThomas Před rokem

    Dude! Nevermind the tutorial. That shirt is the best. I love G.I Joe.

  • @gregwx
    @gregwx Před 10 měsíci

    Outstanding Tutorial Thank you!!

  • @WagsCyber
    @WagsCyber Před rokem

    THank you so much

  • @JosephAnterola
    @JosephAnterola Před rokem

    Thank you Chris!!!!

  • @BenedictChrysosthomos
    @BenedictChrysosthomos Před 10 měsíci

    I‘ve pihole together with unbound installed on a Pi Zero W. It is running really good.😀

  • @user-xy1kf9mn3d
    @user-xy1kf9mn3d Před 8 měsíci

    cooooooooooooooooool thanks man...this was a fun project