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
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2020-12-27 10:50:30 +00:00
|
|
|
### Install & Upgrade Xray-core
|
2020-11-25 05:26:10 +00:00
|
|
|
|
|
|
|
```
|
2020-12-27 10:50:30 +00:00
|
|
|
# bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh) install
|
2020-11-25 05:26:10 +00:00
|
|
|
```
|
|
|
|
|
2020-12-27 10:50:30 +00:00
|
|
|
### Install & Upgrade Xray-core with user root
|
2020-11-25 05:26:10 +00:00
|
|
|
|
|
|
|
```
|
2020-12-27 10:50:30 +00:00
|
|
|
# bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh) install -u root
|
|
|
|
```
|
|
|
|
|
|
|
|
### Install & Upgrade Xray-core without .dat files
|
|
|
|
|
|
|
|
```
|
|
|
|
# bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh) install --without-geodata
|
|
|
|
```
|
|
|
|
|
|
|
|
### Install & Update geoip.dat and geosite.dat only
|
|
|
|
|
|
|
|
```
|
|
|
|
# bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh) install-geodata
|
|
|
|
```
|
|
|
|
|
|
|
|
### Remove Xray
|
|
|
|
|
|
|
|
```
|
|
|
|
# bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh) remove --purge
|
2020-11-25 05:26:10 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Remove Xray, except json and logs
|
|
|
|
|
|
|
|
```
|
2020-12-27 10:50:30 +00:00
|
|
|
# bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh) remove
|
|
|
|
```
|
|
|
|
|
|
|
|
### More useages
|
|
|
|
|
|
|
|
```
|
|
|
|
# bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh) help
|
2020-11-25 05:26:10 +00:00
|
|
|
```
|