最近被git 还有python库的网速搞得头皮发麻
终于有了一个可靠的方案
- 思路:
本着:花最少钱,最快的情况下,解决因为网络问题急需的文件。
1.有一个可以飞出海的机场
2.通过开启:局域网共享 飞出海的功能,让linux 一块飞出去
3.设置linux proxy
或者你有钱又懒直接购买软路由即可
- 全局设置http proxy
代码如下:
- /etc/profile
export proxy="http://192.168.5.14:8118"
#export http_proxy=$proxy
#export https_proxy=$proxy
export all_proxy=$proxy
这样就可以了
个人建议all_proxy 免去一切烦恼
- .wgetrc
修改 wget使用代理
# You can set the default proxies for Wget to use for http, https, and ftp.
# They will override the value in the environment.
https_proxy = http://192.168.31.31:8118/
http_proxy = http://192.168.31.31:8118/
ftp_proxy = http://192.168.31.31:8118/
# If you do not want to use proxy at all, set this to off.
use_proxy = on
类比,百度即可
- sudo 如何使用proxy?
设置玩profile .bashrc .zshrc 这类后对于sudo 命令还是不行的,可以对sudoers 进行 *** 作
对sudoers 权限的 *** 作一定要仔细确认自己有root的用户权限组
官方的建议是使用visudo (具体百度)
如果出现问题可以看我之前的文章:sudoers权限无法修改后的解决方案
然后在继续 *** 作:
更改权限:
首先记住权限 440
sudo chmod 777 /etc/sudoers
直接编辑加入
Defaults env_reset
Defaults env_keep += "http_proxy https_proxy ftp_proxy rsync_proxy no_proxy"
注意必须紧紧跟在reset 后面一行来设置
成功状态:
飞机场系统日志:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)