How to use and setup proxychains - a minimalist guide

💡This article aims at solving network issues you will encounter while being a software developer or tech-related personal in mainland China. When executing some command in Linux operating system, they will curl something

Proxychains代理软件安装配置及基本使用

在Ubuntu中执行Liunx命令,经常会遇到有一部分命令需要走代理,一部分命令则不需要走代理,而Proxychains这个工具则可达到以上需求: # 不需要走代理的命令 curl www.google.com # 需要走代理的命令 proxychains curl www.google.com # 需要一个全走代理的终端 proxychains bash Proxychains的安装 # 安装Proxychains sudo apt install proxychains Proxychains的基本配置 安装完毕后,Proxychains的默认配置地址在:“/etc/proxychains.conf”中,使用vi查看配置文件: # 查看proxychains配置文件