DefederateLemmyMl

  • Gen𝕏
  • Engineer ⚙
  • Techie 💻
  • Self hoster 🖧
  • Linux user 🐧
  • Ukraine supporter 🇺🇦
  • Pro science 💉
  • Dutch speaker
  • 0 Posts
  • 29 Comments
Joined 2 years ago
cake
Cake day: August 8th, 2023

help-circle






  • the installer completely shit itself and the screen went black, could not recover from it

    I don’t think that this is the standard experience people have. I’ve installed Windows 11 more than a few times for family members and for my gaming pc, and while I find Windows insufferably annoying, black screens were not part of the experience.

    weird issues with my rgb and fan control software

    That’s the motherboard manufacturers, that’s not on Windows.

    All motherboard manufacturer software plain sucks. MSI, Asus, Asrock, Gigabyte … the lot of them. Just don’t install that garbage.









  • Yeah no ublock origin really won’t block all that many

    Meh, it’s fairly easy to check this you know. If I turn off uBlock, my pihole logs do turn red. If it’s left on, pihole logs stay mostly green, with nothing suspicious or out of the ordinary getting through.

    the chattiest DNS comes from apps and smart devices, windows and mac laptops etc.

    I don’t have many of those. My work laptop is windows but it connects through a VPN only, and I have my smartphone that I barely use at home.



  • Your understanding is not correct. For page elements, uBlock prevents the domain from even trying to load, so no DNS request is ever made. Only if you go directly to an ad domain from the url bar (who does that?), does a DNS request get made.

    For example, on my own webserver, I created a simple static html file with an <img> tag pointing to an ad domain that I know is blocked on uBlock as well as on the pihole. Like so:

    <html>
    adblock test
    <img src="https://track.adtrue.com/some/bannerad.png"></img>
    </html>
    

    Loading that page, uBlock showed 1 blocked ad on that page, pihole only logged a DNS request to my webserver, not to track.adtrue.com.

    Once I turned off uBlock in the browser and reloaded the page, pihole did log the request to track.adtrue.com and blocked it. My browser showed a broken image.



  • That’s not really the point. The point this post is making is that third party software is often not available as a package for your distro. It’s been a minute since I used Slackware, but I doubt you can find neatly built tgz slackware packages of Steam or the Nvidia drivers.

    I know Slackware has slackbuilds and you can install sbopkg to search for packages and automatically build them, but that goes a bit beyond “just use your package manager”.


  • The box I’m running pihole on hosts several other services as well, so I dread having to reinstall everything. Most of it is dockerized, but still.

    Anyway, I also waffled back and forth on dockerizing pihole when I initially installed it … but ended up going bare metal, and now I wish I would have gone docker from the start. The initial install is perhaps slightly more complicated, but it’s so much more maintainable and transportable to other devices: transfer volumes, and run your docker-compose.yml on the other box … and voila, you’ve cloned your pihole. I use that system to keep my backup pihole in sync by the way.

    Before pihole was essentially a frontend for dnsmasq but it seems like it’s a bit more than that now

    Indeed, it doesn’t run dnsmasq separately anymore, but somehow incorporates all dnsmasq capabilities and it still uses dnsmasq syntax config files, and can be configured to include the /etc/dnsmasq.d configs.