Raspberry
-
Unlock the full potential Raspberry PiHole
As of Pi-hole V5, the file /etc/pihole/adlists.list is no longer used. As discussed in the V5 release notes, adlists, domain blocks (regex, whitelist, blacklist), group assignments and gravity are in a single database in file /etc/pihole/gravity.db If you want to add the lists you show in your post, select the lot of them (without the commented lines), copy to your clipboard. Then go to web admin GUI > Group Management > adlists and paste the lot into the entry window,…
-
Setup a Raspberry Pi Plex Server
ensure our operating system is entirely up to date: sudo apt-get update sudo apt-get upgrade This package allows the “apt” package manager to retrieve packages over the “https” protocol that the Plex repository uses. sudo apt-get install apt-transport-https add the official Plex package repository: curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add – add the official plex repository echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list run the “update” command again to refresh the package list sudo apt-get update install the…