Linux

Finding which package contains a file in Debian

There are times when you’re looking for a particular library, or file, which you know is available to Debian/Ubuntu but you cannot find the package which contains it. This is the kind of job that the Debian packages site helped with in the past, but given its current unavailability we’ll look at another approach.

Read More
Linux

Squid site restrictions

I needed a way to block some websites permanently and others outside of certain hours. After looking at some inline solutions I realised that I could easily do what was needed with squid alone. I created the following ACLs in squid’s config file : acl blockedsites url_regex -i “/etc/squid/blocked.txt” acl bannedsites url_regex -i “/etc/squid/banned.txt” acl […]

Read More