2

What is the procedure to install Privoxy on a Centos machine?
I have tried yum install privoxy, however, I get No package privoxy available.

I am unsure if I am supposed to add any additional repos or use an alternative method.

I have done a Google search for an answer but was unable to find a solution.

2 Answers2

4

These commands are more easier and manageable

wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh epel-release-6-8.noarch.rpm
yum install privoxy -y

In future if you want to update

yum update privoxy -y

Ref: http://pkgs.org/centos-6/epel-x86_64/privoxy-3.0.21-3.el6.x86_64.rpm.html

Arul
  • 514
0

Enter these commands:

wget ftp://ftp.pbone.net/mirror/rpm.razorsedge.org/centos-4/RE-test/privoxy-3.0.12-1.el4.re.i386.rpm
sudo rpm -Uvh privoxy-3.0.12-1.el4.re.i386.rpm
sudo service privoxy start

Source: http://www.privoxy.org/user-manual/

Gareth
  • 19,080
tao
  • 1,445