发布于 4年前
Linux源码安装最新版Privoxy
源码安装
1.下载安装包
wget https://GuoFlight.Github.io/Mycode/Linux/software_install/privoxy-3.0.28-stable-src.tar.gz
2.解压安装
useradd privoxy
yum install autoconf automake libtool #安装依赖包(非CentOS环境根据情况)
tar -zxvf privoxy-3.0.28-stable-src.tar.gz
cd privoxy-3.0.28-stable
autoheader && autoconf
./configure
make && make install
配置文件地址:
/usr/local/etc/privoxy/config
# socks转发地址设置
forward-socks5t
#启动
/etc/init.d/privoxy start
#重启
/etc/init.d/privoxy restart