Xray-install/README.md

66 lines
1.7 KiB
Markdown
Raw Normal View History

2020-11-25 05:26:10 +00:00
# Xray-install
Bash script for installing Xray in operating systems such as CentOS / Debian / OpenSUSE that support systemd.
[Filesystem Hierarchy Standard (FHS)](https://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard)
```
installed: /usr/local/bin/xray
installed: /usr/local/etc/xray/*.json
installed: /usr/local/share/xray/geoip.dat
installed: /usr/local/share/xray/geosite.dat
installed: /var/log/xray/access.log
installed: /var/log/xray/error.log
installed: /etc/systemd/system/xray.service
installed: /etc/systemd/system/xray@.service
```
2020-12-27 12:53:39 +00:00
## Basic Usage
2020-11-25 05:26:10 +00:00
2020-12-27 12:53:39 +00:00
**Install & Upgrade Xray-core and geodata with User nobody, but will NOT overwrite User in existing service files**
2020-11-25 05:26:10 +00:00
```
2020-12-27 12:53:39 +00:00
# bash <(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh) install
2020-11-25 05:26:10 +00:00
```
2020-12-27 12:53:39 +00:00
**Update geoip.dat and geosite.dat only**
2020-11-25 05:26:10 +00:00
```
2020-12-27 12:53:39 +00:00
# bash <(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh) install-geodata
2020-12-27 10:50:30 +00:00
```
2020-12-27 12:53:39 +00:00
**Remove Xray, except json and logs**
2020-12-27 10:50:30 +00:00
```
2020-12-27 12:53:39 +00:00
# bash <(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh) remove
2020-12-27 10:50:30 +00:00
```
2020-12-27 12:53:39 +00:00
## Advance
**Install & Upgrade Xray-core and geodata with User root, which will overwrite User in existing service files**
2020-12-27 10:50:30 +00:00
```
2020-12-27 12:53:39 +00:00
# bash <(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh) install -u root
2020-12-27 10:50:30 +00:00
```
2020-12-27 12:53:39 +00:00
**Install & Upgrade Xray-core without geodata**
2020-12-27 10:50:30 +00:00
```
2020-12-27 12:53:39 +00:00
# bash <(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh) install --without-geodata
2020-11-25 05:26:10 +00:00
```
2020-12-27 12:53:39 +00:00
**Remove Xray, include json and logs**
2020-11-25 05:26:10 +00:00
```
2020-12-27 12:53:39 +00:00
# bash <(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh) remove --purge
2020-12-27 10:50:30 +00:00
```
2020-12-27 12:53:39 +00:00
## More Usage
2020-12-27 10:50:30 +00:00
```
2020-12-27 12:53:39 +00:00
# bash <(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh) help
2020-11-25 05:26:10 +00:00
```