美文网首页
mac 命令行翻越

mac 命令行翻越

作者: jamesXiao_ | 来源:发表于2020-05-20 13:27 被阅读0次
    1. 安装 homebrew
    /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    
    
    1. 安装 proxychains-ng
    brew install proxychains-ng
    
    
    1. 配置proxychains-ng
    • 安装 proxychains-ng

    • 下载配置文件(如果下面的命令执行失败,那你就自己下载proxychains.conf,然后将其移动到 ~/.proxychains.conf)

      curl -L https://raw.githubusercontent.com/FrankFang/dot-files/master/proxychains.conf > ~/.proxychains.conf
      
      
    • 添加 bash alias,运行

      touch ~/.bashrc; echo 'alias pc="proxychains4 -f ~/.proxychains.conf"' >> ~/.bashrc
      
      
    • source ~/.bashrc

    • pc git clone xxx 或者 pc brew install xxx --verbose,那么这个命令行就是翻墙的。

    相关文章

      网友评论

          本文标题:mac 命令行翻越

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