Total Pageviews

Sunday, 17 March 2013

ubuntu桌面系统下,安装配置TOR与Privoxy



在/etc/apt/sources.list中添加
deb http://mirror.noreply.org/pub/tor etch main
deb-src http://mirror.noreply.org/pub/tor etch main

添加密钥

gpg –keyserver keys.gnupg.net –recv 94C09C7F

gpg –export 94C09C7F | sudo apt-key add -

更新源

sudo apt-get update

下载并安装libevent1

http://packages.ubuntu.com/zh-cn/jaunty/libevent1

安装Tor与privoxy

sudo apt-get install tor privoxy


配置Privoxy
以你习惯使用的的编辑器打开 /etc/privoxy/config 文件,在首行加入以下内容(别漏了行末的“.”):

forward-socks4a / localhost:9050 .

如果你不希望 privoxy 把所有事情都记录下来,查找config文件中如下两行,在其前面添加“#”以将其注释:



logfile logfile



jarfile jarfile



保存修改了的 /etc/privoxy/config 文件。

重新启动Tor与Privoxy 服务

sudo /etc/init.d/tor restart

sudo /etc/init.d/privoxy restart