如何在Ubuntu18.04中使用privoxy实现ubuntu终端的scientific surf the Internet
Posted tonydandelion2014
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Ubuntu18.04中使用privoxy实现ubuntu终端的scientific surf the Internet相关的知识,希望对你有一定的参考价值。
总结一下如何在Ubuntu18.04中使用privoxy实现ubuntu终端的scientific surf the Internet
安装privoxy
sudo apt-get install privoxy
如果安装遇到报错
E: Sub-process /usr/bin/dpkg returned an error code (1) "的错误
可以在/var/lib/dpkg
目录下执行
sudo cp info info.baksudo
cd info
rm privoxy.*
然后重新安装
修改配置文件
修改privoxy的config
vim /etc/privoxy/config
为以下内容
listen-address 127.0.0.1:8118 # privoxy监听8118端口
forward-socks5 / 127.0.0.1:1080 . # 将发送到8118端口请求转发到1080,至于127.0.0.1:1080是啥,你应该懂。
修改终端环境配置文件
修改终端环境配置文件,实现http、https、ftp请求皆转发到8118端口
vim ~/.bashrc
在最后添加
export ftp_proxy=http://127.0.0.1:8118
export http_proxy=127.0.0.1:8118
export https_proxy=127.0.0.1:8118
privoxy常用命令
启动
sudo systemctl status privoxy.serivce
OR
sudo service privoxy start
重启 restart
停止 stop
查看状态 status
关键字替换即可
如遇错误
Failed to start privoxy.service: Unit privoxy.service is masked.
可以直接使用以下命令启动
sudo /usr/sbin/privoxy --no-daemon --pidfile /var/run/privoxy.pid --user privoxy /etc/privoxy/config
具体操作参看systemd 开机无法启动privoxy
这里搞了真的好久
测试
lsof -i:8118
OR
wget www.yo*t*b*,com
wget www.go**l*,com
....
以上是关于如何在Ubuntu18.04中使用privoxy实现ubuntu终端的scientific surf the Internet的主要内容,如果未能解决你的问题,请参考以下文章
如何允许节点在 Ubuntu 18.04 上监听 1024 以下的端口?
如何解决在 Linux(Ubuntu 18.04)中进行 EF Core 数据库脚手架的“无法使用 Kerberos 进行身份验证”问题?有啥解决办法吗?
如何在Ubuntu 18.04 Server上安装Redis