创建文件夹与下载二进制文件

1
2
3
4
5
6
# 1、打开终端 Ctrl + Shift + T
# 2、在home目录下面创建clash文件夹
sudo mkdir ~/clash
cd ~/clash
# 3、下载适合的Clash二进制文件并解压后重命名为clash
# https://github.com/DustinWin/clash_singbox-tools/releases/tag/Clash-Premium

image-20241007184059727

1
2
3
4
5
6
7
8
9
10
# 下载的文件若保存到 Downloads文件夹
cd ~/Downloads
# 解压缩文件
tar -xzvf clashpremium-release-linux-amd64.tar.gz
# 解压后的文件夹为CrashCore,将其重命名为clash
mv CrashCore clash
# 设置执行权限
sudo chmod +x clash
# 移动到目标文件夹
mv clash ~/clash

下载clash配置文件

1
2
# 进入到clash目录后,执行下面命令:
wget -O config.yaml "https://ctdfq.no-mad-world.club/link/cySerWWAhUy18txx?clash=3"

启动clash及代理

1
2
3
./clash -d .
# 此时可以访问Clash Dashboard进行切换节点、测延迟等操作
# 127.0.0.1:9000

设置全局代理

image-20241007184936955

此时在Clash DashboardHTTPHTTPS代理都设置为127.0.0.1: 7892,填写Socks主机为127.0.0.1:7893,启动系统代理

可以使用下面命令来检查代理配置:

1
2
3
4
5
lures@lures-Redmi-G-Pro-2024:~$ echo $http_proxy
http://localhost:7892
lures@lures-Redmi-G-Pro-2024:~$ echo $https_proxy
http://localhost:7892
lures@lures-Redmi-G-Pro-2024:~$

修改clash下面的config.yaml文件,将端口改为7892,类似下面:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
port: 7892
socks-port: 7893
allow-lan: false
mode: Rule
log-level: info
external-controller: 127.0.0.1:9090
hosts:
time.facebook.com: 17.253.84.125
time.android.com: 17.253.84.125
dns:
enable: true
use-hosts: true
nameserver:
- 119.29.29.29
- 223.5.5.5
- 223.6.6.6
- tcp://223.5.5.5
- tcp://223.6.6.6
- tls://dns.google:853
- tls://8.8.8.8:853
- tls://8.8.4.4:853
- tls://dns.alidns.com
- tls://223.5.5.5
- tls://223.6.6.6
- tls://dot.pub
- tls://1.12.12.12
- tls://120.53.53.53
- https://dns.google/dns-query
- https://8.8.8.8/dns-query
- https://8.8.4.4/dns-query
- https://dns.alidns.com/dns-query
- https://223.5.5.5/dns-query
- https://223.6.6.6/dns-query
- https://doh.pub/dns-query
- https://1.12.12.12/dns-query
- https://120.53.53.53/dns-query
default-nameserver:
- 119.29.29.29
- 223.5.5.5
- 223.6.6.6
- tcp://119.29.29.29
- tcp://223.5.5.5
- tcp://223.6.6.6
proxies:

若发现78927893端口被占用,可以换其它的端口来替代

clash运行界面

image-20241007185631857

有其他问题可以问chatgpt,个人感觉这个魔改版的clash是机场主自己写的,但是存在至少5年了。

参考资料