I've been using a 17MB hosts file I downloaded to block Facebook, google and other annoying sites.
Today I decided to freshen that list and went looking for it. Instead, I found this site on GitHub that contains a hosts file twice as big.
https://github.com/mitchellkrogza/Ul...osts.Blacklist
Here is the link to the actual hosts file:
https://hosts.ubuntu101.co.za/hosts
I am using it now. It doesn't slow my Internet browsing at all, but it stops the ad junk, facebook and other annoying sites from taking over my browser.
There is a script that will automatically install the big hosts file:
You will have to add a line at the top:
127.0.0.1 yourcomputerdomainname
Today I decided to freshen that list and went looking for it. Instead, I found this site on GitHub that contains a hosts file twice as big.
https://github.com/mitchellkrogza/Ul...osts.Blacklist
Here is the link to the actual hosts file:
https://hosts.ubuntu101.co.za/hosts
I am using it now. It doesn't slow my Internet browsing at all, but it stops the ad junk, facebook and other annoying sites from taking over my browser.
There is a script that will automatically install the big hosts file:
Code:
[FONT=Courier New]#!/bin/bash[/FONT] # Linux hosts Installer for the Ultimate Hosts Blacklist # Repo Url: https://github.com/mitchellkrogza/Ultimate.Hosts.Blacklist # Copyright - Mitchell Krog - mitchellkrog@gmail.com # https://github.com/mitchellkrogza # First Backup Existing hosts file [FONT=Courier New]sudo mv /etc/hosts /etc/hosts.bak[/FONT] # Now download the new hosts file and put it into place [FONT=Courier New]sudo wget https://hosts.ubuntu101.co.za/hosts -O /etc/hosts[/FONT] [FONT=Courier New]exit 0[/FONT]
127.0.0.1 yourcomputerdomainname
Comment