Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/v2fly/fhs-install-v2ray
Bash script for installing V2Ray in operating systems such as Debian / CentOS / Fedora / openSUSE that support systemd
https://github.com/v2fly/fhs-install-v2ray
installer script v2ray
Last synced: about 21 hours ago
JSON representation
Bash script for installing V2Ray in operating systems such as Debian / CentOS / Fedora / openSUSE that support systemd
- Host: GitHub
- URL: https://github.com/v2fly/fhs-install-v2ray
- Owner: v2fly
- License: gpl-3.0
- Created: 2020-03-12T05:27:28.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-05T11:40:15.000Z (about 1 month ago)
- Last Synced: 2024-11-27T11:05:16.689Z (15 days ago)
- Topics: installer, script, v2ray
- Language: Shell
- Homepage:
- Size: 218 KB
- Stars: 6,288
- Watchers: 98
- Forks: 1,456
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - v2fly/fhs-install-v2ray - Bash script for installing V2Ray in operating systems such as Debian / CentOS / Fedora / openSUSE that support systemd (Shell)
README
# fhs-install-v2ray
> 欲查阅以简体中文撰写的介绍,请访问:[README.zh-Hans-CN.md](README.zh-Hans-CN.md)
> Bash script for installing V2Ray in operating systems such as Debian / CentOS / Fedora / openSUSE that support systemd
該腳本安裝的文件符合 [Filesystem Hierarchy Standard (FHS)](https://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard):
```
installed: /usr/local/bin/v2ray
installed: /usr/local/bin/v2ctl
installed: /usr/local/share/v2ray/geoip.dat
installed: /usr/local/share/v2ray/geosite.dat
installed: /usr/local/etc/v2ray/config.json
installed: /var/log/v2ray/
installed: /var/log/v2ray/access.log
installed: /var/log/v2ray/error.log
installed: /etc/systemd/system/v2ray.service
installed: /etc/systemd/system/[email protected]
```## 重要提示
**不推薦在 docker 中使用本專案安裝 v2ray,請直接使用 [官方映象](https://github.com/v2fly/docker)。**
如果官方映象不能滿足您自定義安裝的需要,請以**復刻並修改上游 dockerfile 的方式來實現**。本專案**不會為您自動生成配置檔案**;**只解決使用者安裝階段遇到的問題**。其他問題在這裡是無法得到幫助的。
請在安裝完成後參閱 [文件](https://www.v2fly.org/) 瞭解配置檔案語法,並自己完成適合自己的配置檔案。過程中可參閱社群貢獻的 [配置檔案模板](https://github.com/v2fly/v2ray-examples)
(**提請您注意這些模板複製下來以後是需要您自己修改調整的,不能直接使用**)## 使用
* 該腳本在執行時會提供 `info` 和 `error` 等信息,請仔細閱讀。
### 安裝和更新 V2Ray
```
// 安裝執行檔和 .dat 資料檔
# bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh)
```### 安裝最新發行的 geoip.dat 和 geosite.dat
```
// 只更新 .dat 資料檔
# bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-dat-release.sh)
```### 移除 V2Ray
```
# bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh) --remove
```### 解決問題
* 「[不安裝或更新 geoip.dat 和 geosite.dat](https://github.com/v2fly/fhs-install-v2ray/wiki/Do-not-install-or-update-geoip.dat-and-geosite.dat)」。
* 「[使用證書時權限不足](https://github.com/v2fly/fhs-install-v2ray/wiki/Insufficient-permissions-when-using-certificates)」。
* 「[從舊腳本遷移至此](https://github.com/v2fly/fhs-install-v2ray/wiki/Migrate-from-the-old-script-to-this)」。
* 「[將 .dat 文檔由 lib 目錄移動到 share 目錄](https://github.com/v2fly/fhs-install-v2ray/wiki/Move-.dat-files-from-lib-directory-to-share-directory)」。
* 「[使用 VLESS 協議](https://github.com/v2fly/fhs-install-v2ray/wiki/To-use-the-VLESS-protocol)」。> 若您的問題沒有在上方列出,歡迎在 Issue 區提出。
**提問前請先閱讀 [Issue #63](https://github.com/v2fly/fhs-install-v2ray/issues/63),否則可能無法得到解答並被鎖定。**
## 貢獻
請於 [develop](https://github.com/v2fly/fhs-install-v2ray/tree/develop) 分支進行,以避免對主分支造成破壞。
待確定無誤後,兩分支將進行合併。