Linux安装clash及其使用

一、配置:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
curl https://glados.rocks/tools/clash-linux.zip -o clash.zip

unzip clash.zip

cd clash

把.yaml 配置文件传入此文件夹

chmod +x ./clash-linux-amd64-v1.10.0

./clash-linux-amd64-v1.10.0 -f 配置文件名.yaml -d .
# 不要忘了最后的空格和点




输出以下内容代表配置成功

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
INFO[0000] Start initial compatible provider ♻️ 自动选择    
INFO[0000] Start initial compatible provider ⛽ 剩余流量:98G
INFO[0000] Start initial compatible provider 🌍 国外媒体
INFO[0000] Start initial compatible provider 套餐状态
INFO[0000] Start initial compatible provider 📲 电报信息
INFO[0000] Start initial compatible provider 📢 谷歌FCM
INFO[0000] Start initial compatible provider 🛑 全球拦截
INFO[0000] Start initial compatible provider 🐟 漏网之鱼
INFO[0000] Start initial compatible provider 🎯 全球直连
INFO[0000] Start initial compatible provider 📅 到期时间:2024-09-16
INFO[0000] Start initial compatible provider Ⓜ️ 微软服务
INFO[0000] Start initial compatible provider 🚀 节点选择
INFO[0000] Start initial compatible provider 🍎 苹果服务
INFO[0000] Start initial compatible provider 🍃 应用净化
INFO[0000] RESTful API listening at: 127.0.0.1:9090
INFO[0000] Mixed(http+socks) proxy listening at: [::]:7890

日志提示已经开放了HTTP代理服务端口为7890, SOCK55服务端口为7890

后面设置其他程序(浏览器/GIT等)通过7890/7891来代理访问网络就可以了。

第二步: 使用代理

  1. 例如 Git:

新开一个Terminal,输入下面的查看能否正常运行:

git clone https://github.com/twbs/bootstrap.git --config "http.proxy=127.0.0.1:7890"

新终端开始下载后,原来clash的终端打印如下内容(不同的梯子会有不同的节点名称)则说明clash正常运行:

INFO[0279] [TCP] 127.0.0.1:57512 --> github.com:443 match DomainKeyword(github) using 🚀 节点选择[(SS)IEPL-香港19]

附:

大陆地区linux服务器连接下载hugging face大型模型文件:

需要安装git-lfs

https://github.com/git-lfs/git-lfs/blob/main/INSTALLING.md

对ubuntu而言:

apt/deb repos:

curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash

sudo apt-get install git-lfs

1
2
3
4
5
6
7
git lfs install


git clone https://huggingface.co/nagupv/deberta-v3-large-hf-weights(示例)

如需翻墙:
git clone https://huggingface.co/nagupv/deberta-v3-large-hf-weights --config "http.proxy=127.0.0.1:7890"(示例)

终端代理命令:

export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890


相关pdf及zip:

[clash.zip]

https://github.com/hhgw/hhgw.github.io/tree/main/zip