linux下github全局加速——fastgithub

王柳  金牌会员 | 2024-12-27 10:45:01 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 999|帖子 999|积分 2997

安装 fastgithub

国内大部分服务器无法访问github,或者即时能访问也是速率慢,时灵时不灵的。需要给github加速一下。
一般有四种方法:

  • 修改 /etc/hosts 文件,需要实时更新
  • 本地下载文件之后再上传到服务器。需要二道程序
  • 通过镜像来加速。
    3.1 通过gitee加速,通过修改github地址来将相应的文件改到gitee下载,适用于单文件而且在gitee有镜像堆栈,不顺应于脚本安装,修改了量太大。
    3.2 通过在github网址前参加https://mirror.ghproxy.com/ ; https://gitclone.com/;等前缀来加速,需要设置git的config文件(见下面),对于 curl 和 wget命令无效。


  • #https://gitclone.com/ 可修改为其他镜像前缀
    #当前用户替换
    git config --global url."https://gitclone.com/".insteadOf https:// git clone https://github.com/espnet/espnet.git
    # 全用户替换
    git config --system url."https://gitclone.com/".insteadOf https:// git clone https://github.com/espnet/espnet.git
4.用fastgithub做全局代理,这里主讲fastgithub。
# 合并为一行命令
wget -c -O /opt/fastgithub_linux-x64.zip https://gitee.com/chcrazy/FastGithub/releases/download/2.1.4/fastgithub_linux-x64.zip &&
unzip -d /opt /opt/fastgithub_linux-x64.zip &&
rm /opt/fastgithub_linux-x64.zip &&
/opt/fastgithub_linux-x64/fastgithub start
1. //下载FastGithub Linux版安装包到opt目录
# arm版本需要下载 fastgithub_linux-arm64.zip

2. wget -c -O /opt/fastgithub_linux-x64.zip https://gitee.com/chcrazy/FastGithub/releases/download/2.1.4/fastgithub_linux-x64.zip


4. //解压

5. unzip -d /opt /opt/fastgithub_linux-x64.zip


10. //删除FastGithub Linux版安装包

11. rm /opt/fastgithub_linux-x64.zip


13. //切换目录

14. cd /opt/fastgithub_linux-x64


16. //以systemd服务安装并启动,即开机自启动

18. sudo /opt/fastgithub_linux-x64/fastgithub start

19. //卸载服务

20. sudo /opt/fastgithub_linux-x64/fastgithub stop


22. //手动启动

23. sudo /opt/fastgithub_linux-x64/fastgithub


 

sudo ./fastgithub start
以systemd服务安装并启动,即开机自启动
这样就算成功了:

eea3bb7a93074daa4168e0ad73914462.png
设置代理

2 手动修改 /etc/profile文件

手动修改代理,在/etc/profile 添加
vim /etc/profile
添加下面代码
export http_proxy=http://127.0.0.1:38457
export https_proxy=http://127.0.0.1:38457`
:wq 保存
source /etc/profile #更新shell
/etc/profile 开机重新会主动加载

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

王柳

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表