0

I'm having issues setting up Dansguardian on my computer with Ubuntu 13.10. I'm trying to follow the steps in the Ubuntu Community Documentation for Dansguardian: https://help.ubuntu.com/community/DansGuardian

I installed the programs it specified via terminal command with no errors. Then I downloaded the blacklists from http://urlblacklist.com/?sec=download and extracted the files.

The next step is to run:

tar -xzf bigblacklist.tar.gz

I tried running that command, but get this response:

john-hill@johnhill-desktop:~$ tar -xzf bigblacklist.tar.gz
tar (child): bigblacklist.tar.gz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
john-hill@johnhill-desktop:~$ 

Any ideas? Or is there a better way to set up the blacklists? Any help is appreciated.

Braiam
  • 69,112
John Hill
  • 191

2 Answers2

0

Run the below commands on terminal,

cd /path/to/the/directory/which/contains/bigblacklist.tar.gz
tar -xzf bigblacklist.tar.gz
Avinash Raj
  • 80,446
0

I think that you better off executing this script:

curl -L http://urlblacklist.com/downloads/UpdateBL | sudo sh
Braiam
  • 69,112