this post was submitted on 11 Mar 2025
280 points (96.4% liked)
Technology
65819 readers
4936 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each other!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
- Check for duplicates before posting, duplicates may be removed
- Accounts 7 days and younger will have their posts automatically removed.
Approved Bots
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
...until your family complains that their favorite site has stopped working.
Pi-Hole these days allows you to create Groups so you can set certain devices to fewer or less restrictive blocklists or just leave their connection untouched entirely. Groups is basically how you solve the problem of it breaking something for someone else.
Source: Pissed off my roommate who I somehow accidentally blocked from using Google to appraise his magic cards or something.
https://github.com/jacklul/pihole-updatelists + https://github.com/lovelaze/nebula-sync
collapsed inline media
I'll definitely give those a spin when I've done a fresh install of pihole 6. I've been hesitant to do so because I don't know how to do a fresh install easily when I've already used unbound to make my pi-hole a recursive DNS server and one of my pi-holes also doubles as an immich server so I have to do a lot of backing up I as of yet have been too lazy to do.
Since the update my pi-hole is stoll blocking stuff, but I can not reach the interface anymore. I'm on DietPi and use Unbound as well.
https://discourse.pi-hole.net/t/cannot-access-web-interface-after-pihole-6-update/77366/4
To start you should go to your web admin folder at
/var/www/html/admin
and run agit fsck
to make sure you're having the same problem as the person above. If you get a lot of failures, its likely the same issue.So based on this resolved thread, it looks like you need to install
git-repair
and then once again go to your pihole web admin interface folder at/var/www/html/admin
.Then once in that folder run
git-repair --force
and then when that completes rungit pull
. Hopefully that resolves this issue for you.I had problems with the update on a previous pihole install already up and running with unbound and cloudflared. Did the v6 update as soon as it dropped just for some excitement. During install I did not disable lighttdp or remove it. When I started having failures to access the web portal it had to do with lighttpd running, stopping and disabling it with systemctl fixed most of my problems.