ShellCrash/README.md

109 lines
5.1 KiB
Markdown
Raw Normal View History

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-12-21 13:23:16 +08:00
</h1>
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>
2020-12-21 13:24:25 +08:00
</p>
[中文](README_CN.md) | English
2020-08-11 10:58:13 +08:00
2020-12-21 13:11:33 +08:00
## Function introduction:
2020-12-21 13:11:33 +08:00
~Convenient use in Shell environment through management script [Clash](https://github.com/Dreamacro/clash)<br>~Support management of [Clash functions](https://lancellc.gitbook.io/clash)<br>~Support online import [Clash](https://github.com/Dreamacro/clash) supports sharing, subscription and configuration links<br>~Support configuration timing tasks, support configuration file timing updates<br>~Support online installation and Use local web panel to manage built-in rules<br>~Support routing mode, native mode and other mode switching<br>~Support GNOME, KDE desktop automatic configuration native mode<br>~Support online update<br>
2020-12-21 13:11:33 +08:00
## Equipment support:
2020-12-21 12:37:31 +08:00
2020-12-21 13:11:33 +08:00
~Support various router devices based on OpenWrt or secondary custom development using OpenWrt<br>~Support various devices running standard Linux systems (such as Debian/CenOS/Armbian, etc.)<br>~Compatible with Padavan firmware (conservative mode), Pandora firmware<br>~Compatible with various types of devices customized and developed using the Linux kernel<br>——————————<br>~For more device support, please submit an issue or go to the TG group for feedback (the device name and the device core information returned by running uname -a must be provided)<br>
2020-08-11 10:58:13 +08:00
2020-12-21 13:11:33 +08:00
How to use:
2020-07-08 20:10:46 +08:00
--
2020-12-21 13:11:33 +08:00
~Confirm that the router device has enabled SSH and obtained root privileges (Linux devices with GUI desktops can be installed using their own terminal)<br>~Use SSH connection tools (such as putty, JuiceSSH, system built-in terminal, etc.) router or Linux device SSH management interface or terminal interface, and switch to the root user<br>~Confirm that the curl or wget download tool has been installed on the device. If not installed, please [refer to here](https://www.howtoforge.com/install-curl-in-linux) for LInux devices to install curl. For devices based on OpenWrt (Xiaomi official system, Pandora, Gaoke, etc.), please Use the following command to install curl:<br>
```sh
opkg update && opkg install curl
```
2020-12-21 13:11:33 +08:00
~ Then execute the following installation commands on the SSH interface, and follow the subsequent prompts to complete the installation<br>
2020-12-21 13:11:33 +08:00
##### ~Use curl:<br>
2020-09-12 15:37:28 +08:00
```Shell
2020-12-21 13:11:33 +08:00
#Release version - by github
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-12-21 13:11:33 +08:00
#Release version - by 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-12-21 13:11:33 +08:00
#Test version - by 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-10-12 15:01:35 +08:00
2020-12-21 13:11:33 +08:00
##### ~Use wget<br>
```sh
2020-12-21 13:11:33 +08:00
#Release version - by 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-12-21 13:11:33 +08:00
~**After installation by non-root users**, please execute the following additional commands to read environment variables:<br>
```shell
source ~/.bashrc &> /dev/null
```
2020-12-21 13:11:33 +08:00
~After installing the management script, execute the following command to **run the management script**<br>
2020-09-12 15:37:28 +08:00
```Shell
2020-12-21 13:11:33 +08:00
clash #normal mode
clash -h #help
clash -t #test mode
2020-09-12 15:37:28 +08:00
```
2020-08-11 10:58:13 +08:00
2020-12-21 13:11:33 +08:00
~**Additional dependencies at runtime**<br>
2020-12-21 13:11:33 +08:00
```
Most of the equipment/systems are pre-installed with most of the following dependencies, you can ignore them if there is no impact when you use them.
```
```sh
2020-12-21 13:11:33 +08:00
bash/ash necessary Cannot install and run scripts when all are missing
curl/wget necessary When all are missing, it cannot be installed and updated online
iptables important Only use pure mode when missing
systemd/rc.common general Only use conservative mode when all are missing
iptables-mod-nat general Cannot use redir mode, mixed mode when missing
ip6tables-mod-nat lower Affects redir mode when missing, mixed mode support for ipv6
crontab lower Cannot enable timing task function when missing
net-tools minimal Cannot detect port occupancy normally when missing
ubus/iproute-doc minimal The host address of the machine cannot be obtained normally when missing
```
2020-12-21 13:11:33 +08:00
## Update log:
2020-12-21 13:11:33 +08:00
### [Click to view](https://github.com/juewuy/ShellClash/releases)
2020-08-11 10:58:13 +08:00
2020-12-21 13:11:33 +08:00
## Exchange feedback:
2020-08-11 10:58:13 +08:00
2020-12-21 13:11:33 +08:00
### [TG Discussion Group](https://t.me/clashfm)
2020-12-21 13:11:33 +08:00
## Related Q&A:
2020-07-08 20:27:18 +08:00
2020-12-21 13:11:33 +08:00
### [See blog for details](https://juewuy.github.io)
2020-12-21 13:11:33 +08:00
## Donate this project
### [Go to page](https://juewuy.github.io/yOF4Yf06Q/)
## Friendly promotion:
### [Top 8K Airport-Dler](https://dler.best/auth/register?affid=89698)