1 2 3 4 5 6 7 8 9 10
| #打开终端进入下载的文件夹 cd ~/下载 # 解压 tar -zxvf clash-linux-amd64-v1.11.4.gz # 改名 mv clash-linux-amd64-v1.11.4.gz clash #添加执行权限 sudo chmod +x clash #将 clash 放到 /usr/bin/ 目录下 sudo cp clash /usr/bin/
|
二、进入新建的这个Clash文件夹,下载config.yaml和Country.mmdb
1 2 3 4 5 6 7 8 9 10
| #在终端中运行 clash clash #上一步操作会在 ~/.config/clash/ 文件夹下生成 config.yaml 和 Country.mmdb 两个文件 cd ~/.config/clash/ #下载clash 配置文件config.yaml 在代理商那里复制订阅链接,替代 [订阅链接] wget -O config.yaml [订阅链接] #下载Country.mmdb wget -O Country.mmdb https://www.sub-speeder.com/client-download/Country.mmdb 或者 wget -O Country.mmdb https://cdn.jsdelivr.net/gh/baixf-xyz/baixf-xyz@latest/Country.mmdb
|
三、启动clash
(1)启动clash
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| #可启动 Clash,同时启动 HTTP 代理和 Socks5 代理 clash -d . 出现如下(保持此终端打开): 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] Start initial compatible provider Ⓜ️ 微软服务 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] RESTful API listening at: [::]:9090 INFO[0000] HTTP proxy listening at: [::]:7890 INFO[0000] SOCKS proxy listening at: [::]:7891
|
(2)访问 http://clash.razord.top/ 可以进行切换节点、测延迟等操作。
打开配置文件config.yaml ,给它设置一个密码: # RESTful API 的口令 secret: ‘123456’
这个页面要求提供,Host,Port,Secret 三个输入:
Host: 127.0.0.1
Port: 9090
Secret: 123456
四、系统设置
打开系统设置,选择网络点击网络代理右边的 ⚙ 按钮,选择手动,填写 HTTP 和 HTTPS 代理为 127.0.0.1:7890,填写 Socks 主机为 127.0.0.1:7891,即可启用系统代理。(注意:冒号后的数字写后面)
注意:要访问谷歌,就要时刻打开那个终端
五、后台运行
用 nohup clash & 命令可以使程序在后台运行,即使退出终端也不影响。
1 2
| #保存输出内容到一个文件,使用 "nohup COMMAND > FILE" 形式的命令。 nohup clash &
|
参考