Ubuntu如何安装proxy命令
在Ubuntu系统中,可使用以下命令安装proxychains工具:
sudo apt update
sudo apt install proxychains
sudo nano /etc/proxychains.conf
[ProxyList]
socks5 127.0.0.1 1080
proxychains wget http://example.com/file.tar.gz
这样就能够使用proxychains工具来通过代理服务器访问网络。
TOP