Reputation: 460
When I use the shadowsock's client on windows, and I make it the global agent.
Then, whatever I use Fixfox or chrome, I could get the result I want.
I want to know , how the client make the other software use the Internet through it ? Could someone tell the knowledge about this?
Upvotes: 0
Views: 507
Reputation: 4303
on unix system, using proxychains
ubuntu
sudo apt-get install proxychains
mac os x
brew install proxychains
add below line to /etc/proxychains.conf
on linux or ~/.proxychains/proxychains.conf
on mac
socks5 127.0.0.1 1080 # on linux
socks5 127.0.0.1 1086 # on mac
Don't forget remove remove socks4 if exits
on linux
proxychains wget https://www.google.com
proxychains google-chrome
on mac
proxychains4 wget https://www.google.com
Upvotes: 1