在服务器开启了IP白名单等情况下,我们有时需要通过代理来连接服务器,而rsync自然也会遇到这个问题。某篇博客中提到使用环境变量RSYNC_PROXY来指定socks5代理,这其实是错误的,RSYNC_PROXY指定的是http代理。 然而,在只有socks5代理的情况下,我们固然可以通过privo ...
分类:
其他好文 时间:
2021-07-01 16:54:01
阅读次数:
0
设置对应环境变量即可: set(ENV{http_proxy} "http://proxy.cd.intel.com:911") set(ENV{https_proxy} "https://proxy.cd.intel.com:911") 或者在Bash中Export相应环境变量。 socks5:/ ...
分类:
其他好文 时间:
2021-06-16 17:37:36
阅读次数:
0
设置 http 代理 socks5 协议代理 git config --global http.proxy 'socks5://127.0.0.1:10808' git config --global https.proxy 'socks5://127.0.0.1:10808' http / htt ...
分类:
其他好文 时间:
2021-05-24 08:22:53
阅读次数:
0
方法一:安装chrome的github加速插件 然后就可以直接通过加速链接 下载了,如图所示。 方法二:通过代理的方式,一步搞定,如果你有代理,那么一定是这么玩的。 export ALL_PROXY=socks5://127.0.0.1:1080 测试一下TCP成功到达谷歌服务器,就说明咱们终端的T ...
分类:
其他好文 时间:
2021-01-22 12:17:41
阅读次数:
0
设置当前代理 git config http.proxy http://127.0.0.1:2334 取消当前代理 git config --unset http.proxy 取消全局代理 git config --global --unset http.proxy 设置socks5代理 git c ...
分类:
其他好文 时间:
2021-01-13 10:51:35
阅读次数:
0
Usage Usage: python sqlmap.py [options] Options: -h, --help Show basic help message and exit -hh Show advanced help message and exit --version Show pr ...
分类:
数据库 时间:
2020-09-17 19:59:29
阅读次数:
36
常用的软件设置代理方法Gitgitconfig--globalhttps.proxyhttp://127.0.0.1:1080gitconfig--globalhttps.proxyhttps://127.0.0.1:1080gitconfig--global--unsethttp.proxygitconfig--global--unsethttps.proxynpmconfigdeletepro
分类:
其他好文 时间:
2020-09-04 17:05:18
阅读次数:
54
默认模式:http代理 set http_proxy=http://127.0.0.1:7008 set https_proxy=http://127.0.0.1:7008 bash模式:sock5代理 export https_proxy=socks5://127.0.0.1:1080 expor... ...
分类:
其他好文 时间:
2020-08-06 09:19:42
阅读次数:
87
#!/bin/bash yum -y install epel-release yum -y update yum -y remove firewalld yum -y install iptables iptables-services yum -y install gcc vim wget ma ...
分类:
Web程序 时间:
2020-07-01 20:32:05
阅读次数:
238