首页 > 代码库 > centos7安装privoxy

centos7安装privoxy

  由于作者是在亚马逊的EC2服务器上安装Privoxy代理,而自带的源中并没有privoxy的rpm包。而在国内的镜像中,只有阿里云的镜像中有Privoxy,但是访问速度慢的不行。163源中干脆就没有。

无奈,只能还是使用二进制包安装,正面刚遇到的此问题:

技术分享

网上搜索后,找到以下解决方案:

先安装libtool。

执行以下代码:

cp /usr/share/libtool/config/config.guess .
cp /usr/share/libtool/config/config.sub .

  如果提示没有文件,就查看下libtool的安装目录,在找到其配置文件路径,然后替代上方路径即可。

然后,按照官方教程,执行以下:

 ./configure      # (--help to see options)
 make             # (the make from GNU, sometimes called gmake)
 su               # Possibly required
 make -n install  # (to see where all the files will go)
 make -s install  # (to really install, -s to silence output)
 make install

然后就ok了。

技术分享

 

centos7安装privoxy