2020-12-21 12:37:31 +08:00
|
|
|
|
<h1 align="center">
|
|
|
|
|
<img src="https://github.com/Dreamacro/clash/raw/master/docs/logo.png" alt="Clash" width="200">
|
|
|
|
|
<br>ShellClash<br>
|
2020-10-13 17:06:21 +08:00
|
|
|
|
|
2020-12-21 12:37:31 +08:00
|
|
|
|
<p align="center">
|
|
|
|
|
<a target="_blank" href="https://github.com/Dreamacro/clash/releases">
|
|
|
|
|
<img src="https://img.shields.io/github/release/Dreamacro/Clash.svg?style=flat-square&label=Clash">
|
|
|
|
|
</a>
|
|
|
|
|
<a target="_blank" href="https://github.com/juewuy/ShellClash/releases">
|
|
|
|
|
<img src="https://img.shields.io/github/release/juewuy/ShellClash.svg?style=flat-square&label=ShellClash&colorB=green">
|
|
|
|
|
</a>
|
|
|
|
|
</p>
|
2020-12-21 13:06:04 +08:00
|
|
|
|
[中文](README.md) | [English](README_EN.md)
|
2020-08-11 10:58:13 +08:00
|
|
|
|
|
2020-08-11 10:57:29 +08:00
|
|
|
|
功能简介:
|
|
|
|
|
--
|
2020-12-21 13:06:04 +08:00
|
|
|
|
|
2020-10-10 17:07:14 +08:00
|
|
|
|
~通过管理脚本在Shell环境下便捷使用[Clash](https://github.com/Dreamacro/clash)<br>
|
2020-09-21 16:51:14 +08:00
|
|
|
|
~支持在Shell环境下管理[Clash各种功能](https://lancellc.gitbook.io/clash)<br>
|
2020-12-21 12:37:31 +08:00
|
|
|
|
~支持在线导入[Clash](https://github.com/Dreamacro/clash)支持的分享、订阅及配置链接<br>~支持配置定时任务,支持配置文件定时更新<br>~支持在线安装及使用本地网页面板管理内置规则<br>
|
|
|
|
|
~支持路由模式、本机模式等多种模式切换<br>~支持GNOME、KDE桌面自动配置本机模式<br>~支持在线更新<br>
|
2020-09-21 16:51:14 +08:00
|
|
|
|
|
|
|
|
|
设备支持:
|
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
~支持各种基于OpenWrt或使用OpenWrt二次定制开发的路由器设备<br>
|
2020-12-21 12:37:31 +08:00
|
|
|
|
~支持各种运行标准Linux系统(如Debian/CenOS/Armbian等)的设备<br>~兼容Padavan固件(保守模式)、潘多拉固件<br>~兼容各类使用Linux内核定制开发的各类型设备<br>
|
|
|
|
|
|
|
|
|
|
——————————<br>
|
2020-10-02 07:36:44 +08:00
|
|
|
|
~更多设备支持,请提issue或前往TG群反馈(需提供设备名称及运行uname -a返回的设备核心信息)<br>
|
2020-08-11 10:58:13 +08:00
|
|
|
|
|
2020-09-12 15:37:28 +08:00
|
|
|
|
使用方式:
|
2020-07-08 20:10:46 +08:00
|
|
|
|
--
|
2020-10-24 21:13:06 +08:00
|
|
|
|
~确认路由器设备已经开启SSH并获取root权限(带GUI桌面的Linux设备可使用自带终端安装)<br>
|
|
|
|
|
~使用SSH连接工具(如putty,JuiceSSH,系统自带终端等)路由器或Linux设备的SSH管理界面或终端界面,并切换到root用户<br>
|
|
|
|
|
~确认设备已经安装curl或者wget下载工具。如未安装,LInux设备请[参考此处](https://www.howtoing.com/install-curl-in-linux)安装curl,基于OpenWrt(小米官方系统、潘多拉、高恪等)的设备请使用如下命令安装curl:<br>
|
2020-10-13 17:06:21 +08:00
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
opkg update && opkg install curl
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
~之后在SSH界面执行如下安装命令,并按照后续提示完成安装<br>
|
|
|
|
|
|
2020-10-24 21:13:06 +08:00
|
|
|
|
~**使用curl安装**:<br>
|
2020-09-21 16:51:14 +08:00
|
|
|
|
|
2020-09-12 15:37:28 +08:00
|
|
|
|
```Shell
|
2020-10-11 21:33:40 +08:00
|
|
|
|
#Release版本-github直连
|
2020-09-19 16:51:34 +08:00
|
|
|
|
sh -c "$(curl -kfsSl --resolve raw.githubusercontent.com:443:199.232.68.133 https://raw.githubusercontent.com/juewuy/ShellClash/master/install.sh)" && source /etc/profile &> /dev/null
|
2020-10-11 21:33:40 +08:00
|
|
|
|
#Release版本-jsdelivrCDN源
|
2020-10-12 15:01:35 +08:00
|
|
|
|
sh -c "$(curl -kfsSl https://cdn.jsdelivr.net/gh/juewuy/ShellClash@master/install.sh)" && source /etc/profile &> /dev/null
|
2020-10-11 21:33:40 +08:00
|
|
|
|
#Test版本-github直连
|
|
|
|
|
sh -c "$(curl -kfsSl --resolve raw.githubusercontent.com:443:199.232.68.133 https://raw.githubusercontent.com/juewuy/ShellClash/master/install.sh)" -s 1 && source /etc/profile &> /dev/null
|
2020-09-19 16:51:34 +08:00
|
|
|
|
```
|
2020-10-12 15:01:35 +08:00
|
|
|
|
|
2020-10-24 21:13:06 +08:00
|
|
|
|
~**使用wget安装**:<br>
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
#Release版本-jsdelivrCDN源
|
2020-11-22 10:57:50 +08:00
|
|
|
|
wget -q --no-check-certificate -O /tmp/install.sh https://cdn.jsdelivr.net/gh/juewuy/ShellClash@master/install.sh && sh /tmp/install.sh && source /etc/profile &> /dev/null
|
2020-10-24 21:13:06 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
~**非root用户安装后**请额外执行以下命令以读取环境变量:<br>
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
source ~/.bashrc &> /dev/null
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
~安装完成管理脚本后,执行如下命令以**运行管理脚本**<br>
|
2020-09-21 16:51:14 +08:00
|
|
|
|
|
2020-09-12 15:37:28 +08:00
|
|
|
|
```Shell
|
2020-10-14 17:25:56 +08:00
|
|
|
|
clash #正常模式运行
|
|
|
|
|
clash -h #脚本帮助及说明
|
|
|
|
|
clash -t #测试模式运行
|
2020-09-12 15:37:28 +08:00
|
|
|
|
```
|
2020-08-11 10:58:13 +08:00
|
|
|
|
|
2020-10-24 21:13:06 +08:00
|
|
|
|
~**运行时的额外依赖**:<br>
|
|
|
|
|
|
|
|
|
|
`大部分的设备/系统都已经预装了以下的大部分依赖,使用时如无影响可以无视之`
|
|
|
|
|
|
|
|
|
|
```sh
|
2020-10-30 16:18:48 +08:00
|
|
|
|
bash/ash 必须 全部缺少时无法安装及运行脚本
|
|
|
|
|
curl/wget 必须 全部缺少时无法在线安装及更新,无法使用节点保存功能
|
|
|
|
|
iptables 重要 缺少时只能使用纯净模式
|
2020-10-24 21:27:13 +08:00
|
|
|
|
systemd/rc.common 一般 全部缺少时只能使用保守模式
|
|
|
|
|
iptables-mod-nat 一般 缺少时无法使用redir模式,混合模式
|
|
|
|
|
ip6tables-mod-nat 较低 缺少时影响redir模式,混合模式对ipv6的支持
|
2020-10-30 16:18:48 +08:00
|
|
|
|
crontab 较低 缺少时无法启用定时任务功能
|
|
|
|
|
net-tools 极低 缺少时无法正常检测端口占用
|
2020-10-24 21:27:13 +08:00
|
|
|
|
ubus/iproute-doc 极低 缺少时无法正常获取本机host地址
|
2020-10-24 21:13:06 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-09-12 15:37:28 +08:00
|
|
|
|
更新日志:
|
2020-08-11 10:57:29 +08:00
|
|
|
|
--
|
2020-10-24 21:13:06 +08:00
|
|
|
|
|
2020-10-21 00:42:59 +08:00
|
|
|
|
### [点击查看](https://github.com/juewuy/ShellClash/releases)
|
2020-08-11 10:58:13 +08:00
|
|
|
|
|
2020-08-11 10:59:29 +08:00
|
|
|
|
交流反馈:
|
2020-07-29 23:57:06 +08:00
|
|
|
|
--
|
2020-10-21 00:42:59 +08:00
|
|
|
|
### [TG讨论组](https://t.me/clashfm)
|
2020-08-11 10:58:13 +08:00
|
|
|
|
|
2020-10-21 00:42:59 +08:00
|
|
|
|
相关Q&A:
|
2020-07-08 19:58:41 +08:00
|
|
|
|
--
|
2020-10-21 00:42:59 +08:00
|
|
|
|
|
|
|
|
|
### [详见博客](https://juewuy.github.io)
|
2020-07-08 20:27:18 +08:00
|
|
|
|
|
2020-11-03 16:41:41 +08:00
|
|
|
|
## 捐赠此项目:
|
|
|
|
|
|
|
|
|
|
### [前往页面](https://juewuy.github.io/yOF4Yf06Q/)
|
|
|
|
|
|
2020-09-12 15:37:28 +08:00
|
|
|
|
友情推广:
|
2020-08-15 14:38:36 +08:00
|
|
|
|
--
|
2020-10-30 16:18:48 +08:00
|
|
|
|
### [顶级8K专线机场-墙洞](https://dler.best/auth/register?affid=89698)
|