RspiOS 配置使用 Clash
...大约 1 分钟
环境
平常开发使用manjaro和windows,配置clash一直使用的GUI客户端,没有去折腾使用底层的clash(主要是懒...)
刚好最近入手了一个树莓派,这次就在树莓派上研究下clash的使用(主要是想整活)
本文环境:
- Raspi OS - 64bit
安装
在clash github 仓库中选择 clash-linux-armv8-v1.7.1.gz 下载(因为树莓派是ARM架构,本文使用的系统为64bit,需选择armv8)
直接使用wget
下载:
wget -O clash-linux-armv8-v1.7.1.gz https://github.com/Dreamacro/clash/releases/download/v1.7.1/clash-linux-armv8-v1.7.1.gz
解压并添加执行权限:
gzip -f clash-linux-armv8-v1.7.1.gz -d
chmod +x clash-linux-armv8-v1.7.1
启动clash,会自动生成默认配置config.yml
和下载全球IP地址库Country.mmdb
配置
将服务商提供的配置文件写到config.yml
即可
还可以使用Web工具
环境变量
设置环境变量:
export http_proxy=http://host:port
export https_proxy=$http_proxy
启动
再次启动clash,即可使用
可以编写启动脚本在后台执行:
#!/bin/zsh
nohup $HOME/MyApps/clash/clash-linux-armv8-v1.7.1 > $HOME/MyApps/clash/log/clash.log 2>&1 &
参考
clash github repo
ubuntu 20.04 配置使用 clash for linux postbird blog
nohup 详解 jinxiao-pu blog
Powered by Waline v2.15.2