美文网首页
macOS-Proxychains4 安装

macOS-Proxychains4 安装

作者: testerzhang | 来源:发表于2020-05-15 22:31 被阅读0次

什么是Proxychains4

有时候国内速度太慢,我们想通过终端iterm需要下载国外的资源,而我们有ss,那就可以用到这个Proxychains4

安装

  1. 高版本的操作系统需要重启到安全模式,执行命令
$ csrutil disable
  1. 正常安装
$ brew install proxychains-ng
  1. 创建配置文件夹
$  mkdir ~/.proxychains/
  1. 拷贝配置文件
$  cp /usr/local/etc/proxychains.conf ~/.proxychains/proxychains.conf
  1. 输入你本地服务的ss端口
$ echo 'socks5  127.0.0.1 1086' >> ~/.proxychains/proxychains.conf

注释掉

#socks4         127.0.0.1 9050
  1. 设置别名,别名名字随意起
alias startproxychains='/usr/local/bin//proxychains4 -f ~/.proxychains.conf'
  1. 下载例子
$ startproxychains wget  https://x.x.x.x/1.dmg

相关文章

网友评论

      本文标题:macOS-Proxychains4 安装

      本文链接:https://www.haomeiwen.com/subject/ksqkohtx.html