安装clash for linux的三种方法
2022/7/12 5:20:03
本文主要是介绍安装clash for linux的三种方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Clash for Linux 部署
前言
Clash for Windows 是一款非常好用的代理软件,它通过简单的配置能实现通过代理的网路自动切换直连或者代理。也提供了允许局域网其他设备连接和游戏模式等非常好i用的功能。在Windows的图形化界面操作非常友好。由于我家里有台设备是Linux Ubuntu。想通过这个软件走代理。以下是配置三种方法
linux常规安装
1. 下载文件
wget https://github.com/Dreamacro/clash/releases/download/v1.8.0/clash-freebsd-amd64-v1.8.0.gz
2. 解压
gunzip
3. 配置
将订阅的配置文件移动到解压目录并重命名为config.yaml
启动
chmod +x ./clash-linux-XXXX ./clash-linux-XXXX -d .
自启动
#创建service文件 touch /etc/systemd/system/clash.service #编辑如下文本: [Unit] Description=clash daemon [Service] Type=simple User=root ExecStart=/home/username/下载/Clash/clash -d /home/username/下载/Clash/ Restart=on-failure [Install] WantedBy=multi-user.target ## 刷新系统服务并设置为自启动 sudo systemctl daemon-reload sudo systemctl enable clash sudo systemctl start clash
docker部署
需要先在本地创建config.yaml文件
1. 编辑docker-compose配置文件
version: '3' services: clash: # ghcr.io/dreamacro/clash # ghcr.io/dreamacro/clash-premium # dreamacro/clash # dreamacro/clash-premium image: dreamacro/clash container_name: clash volumes: - ./config.yaml:/root/.config/clash/config.yaml # - ./ui:/ui # dashboard volume ports: - "7890:7890" - "7891:7891" # - "8080:8080" # external controller (Restful API) restart: unless-stopped network_mode: "bridge" # or "host" on Linux
2. 启动
$ docker-compose up -d
3. 访问
http://clash.razord.top/#/proxies
通过flatpak安装clash for windows
flatpak install clash
参考
https://www.cnblogs.com/rogunt/p/15127947.html #普通方式部署clash
https://github.com/Dreamacro/clash/wiki/clash-as-a-daemon#docker #docekr 部署clash
这篇关于安装clash for linux的三种方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows)
- 2024-11-08linux的 vi编辑器中搜索关键字有哪些常用的命令和技巧?-icode9专业技术文章分享
- 2024-11-08在 Linux 的 vi 或 vim 编辑器中什么命令可以直接跳到文件的结尾?-icode9专业技术文章分享
- 2024-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南
- 2024-08-21【Linux】分区向左扩容的方法