Linux PAC自动代理¶
1. 安装genpac¶
如果没有安装pip,先安装pip
sudo apt-get install python-pip
pip install genpac
2. 生成配置文件¶
mkdir ~/shadowsocks
cd shadowsocks
genpac --proxy="SOCKS5 127.0.0.1:1080" --gfwlist-proxy="SOCKS5 127.0.0.1:1080" -o autoproxy.pac --gfwlist-url="https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt"
3. 配置系统网络Proxy¶
GUI界面¶
打开下列路径 [system] settings -> network -> network proxy 选择代理方式为automatic, 配置url填写为
file:///PATH_TO_PAC/autoproxy.pac
- 按照实际情况填写pac文件的路径
REF¶
[1]. https://stackoverflow.club/using-pac-in-linux/