RspiOS 配置使用 Clash

Kesa...大约 1 分钟linuxraspberry piclash

环境

平常开发使用manjaro和windows,配置clash一直使用的GUI客户端,没有去折腾使用底层的clash(主要是懒...)

刚好最近入手了一个树莓派,这次就在树莓派上研究下clash的使用(主要是想整活)

本文环境:

  • Raspi OS - 64bit

安装

clashopen in new window github 仓库中选择 clash-linux-armv8-v1.7.1.gzopen in new window 下载(因为树莓派是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 &

参考

  1. clashopen in new window github repo

  2. ubuntu 20.04 配置使用 clash for linuxopen in new window postbird blog

  3. nohup 详解open in new window jinxiao-pu blog

上次编辑于:
评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.15.2