How to block public trackers?

Hi,

When I installed Quickbox during the installation I chose to allow Public tracker. Is there any way to change this afterwards ?

Thanks

All you have to do is run the chunk of code responsible for blocking hosts during setup as root:

sudo bash or su -

Then:

local_setup=/root/QuickBox/setup/
cp ${local_setup}templates/trackers.template /etc/trackers
cp ${local_setup}templates/denypublic.template /etc/cron.daily/denypublic
chmod +x /etc/cron.daily/denypublic
cat ${local_setup}templates/hostsTrackers.template >> /etc/hosts
1 Like

Thank you !!