执行以下命令来安装 Clash:
bashsudo su
cd ~ && mkdir data && mkdir /data/clash && cd /data/clash
# 选择使用或不使用代理下载Clash
wget https://dl3.ssrss.club/clash-linux-amd64-v1.9.0.gz
wget --no-proxy https://dl3.ssrss.club/clash-linux-amd64-v1.9.0.gz
# 替换成你的Clash订阅链接
wget -O /data/clash/config.yaml "YOUR_SUBSCRIPTION_LINK"
wget --no-proxy -O /data/clash/config.yaml "YOUR_SUBSCRIPTION_LINK"
# 下载地理数据库
wget https://dl3.ssrss.club/Country.mmdb
wget --no-proxy https://dl3.ssrss.club/Country.mmdb
# 解压并赋予执行权限
gunzip -c *.gz > clash && chmod +x clash
特殊说明:
dl3
改为 dl
wget -O /opt/clash/config.yaml "YOUR_SUBSCRIPTION_LINK"
执行以下命令来配置 Systemd:
bashcat > /usr/lib/systemd/system/clash.service <<'EOF'
[Unit]
Description=clash
[Service]
TimeoutStartSec=0
ExecStart=/data/clash/clash -d /data/clash
Restart=on-failure
RestartSec=5s
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
如果设置失败,跳到第三步启动 Clash。
如果 Systemd 设置成功,执行以下命令:
bash# 启动Clash
systemctl start clash
# 关闭Clash
systemctl stop clash
# 查看状态
systemctl status clash
# 设置开机自启
systemctl enable clash
# 取消开机自启
systemctl disable clash
Systemd 设置失败的处理:
bashnohup /opt/clash/clash -d /opt/clash > /dev/null 2>&1 &
重置网络连接:
bashunset http_proxy
unset https_proxy
访问 Clash 控制面板选择节点。红色节点不一定表示无法连接,许多红色节点实际上是正常的。
检查是否能科学上网。在 Ubuntu 系统中,手动设置代理路径为:系统设置 -> 网络 -> 网络代理。终端代理设置:
bashexport ALL_PROXY=http://127.0.0.1:7890
curl www.google.com
bashunset ALL_PROXY
bashcd ~
ls -alt
vim .bash_profile
export ALL_PROXY=http://127.0.0.1:7890
source ~/.bash_profile
curl www.google.com
sh# 查看
echo $http_proxy
echo $https_proxy
echo $ALL_PROXY
sh# 清除
unset http_proxy
unset https_proxy
unset ALL_PROXY
本文作者:Golovin
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!