赞
踩
用wget
使用代理服务器时
问题:
wget https://......
解析代理服务器 URL socks5://127.0.0.1:1080 时发生错误:不支持的协议类型 “socks5”。
解决:
使用tsocks
,支持socks5
sudo apt install tsocks -y
sudo vim /etc/tsocks.conf
#配置你的代理服务器信息
server = 127.0.0.1
# Server type defaults to 4 so we need to specify it as 5 for this one
server_type = 5
# The port defaults to 1080 but I've stated it here for clarity
server_port = 1080
wget前面加上tsocks,问题解决。
tsocks wget https://......
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。