Linux安装最新版Privoxy

版权声明:商业使用请与博主联系 https://blog.csdn.net/NetRookieX/article/details/89354870

前言

本文提供两种方法进行安装。
方法1比较简单。
方法2比较通用。

环境

  • CentOS7
  • 其他环境可以尝试使用方法2安装。

方法1-yum安装

sudo yum -y install privoxy

方法2-源码安装

1.下载安装包

小贴士
很遗憾,这个要科学上网才能下载,所以你们可以下载好上传,有条件也可以直接wget。网址是http://www.privoxy.org/sf-download-mirror/Sources/
要是不能科学上网的小伙伴也不用担心,我把到写这篇博客为止的最新版上传到了github,可以直接使用以下命令下载。

wget https://GuoFlight.Github.io/Mycode/Linux/software_install/privoxy-3.0.28-stable-src.tar.gz

2.解压安装

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

猜你喜欢

转载自blog.csdn.net/NetRookieX/article/details/89354870