CentOS+tor+Privoxy 服务搭建(要出墙tor才可正常使用):
sudo yum install epel-release 不然没有源
sudo yum install tor
service tor start 启动服务 检查服务状态 service tor status
sudo yum install privoxy 安装
要修改一下privoxy 配置文件 将tor 和privoxy整合
vi /ect/privoxy/config 搜索/forward-socks5t 找到注释拿掉 ESC wq保存退出
启动privoxy service privoxy start 启动完成检查状态 status 这样就完成了服务搭建
设置完成代理 检查是否成功 访问https://check.torproject.org/ 验证
Ubuntu + tor + Privoxy 服务搭建:
ubuntu相对来说就好点了 配置好可靠的源 update
sudo apt-get install tor
service tor start 检查服务 status
sudo apt-get install privoxy
同样修改配置 vi /ect/privoxy/config 搜索/forward-socks5t 找到注释拿掉 ESC wq保存退出
设置完成 通过127.0.0.1:8118 匿名上网</