Skip to content

Latest commit

 

History

History
121 lines (86 loc) · 3.71 KB

README.zh-Hans-CN.md

File metadata and controls

121 lines (86 loc) · 3.71 KB

fhs-install-v2ray

欲查閱以繁體中文撰寫的介紹,請訪問:README.md

Bash script for installing V2Ray in operating systems such as Debian / CentOS / Fedora / openSUSE that support systemd

该脚本安装的文档符合 Filesystem Hierarchy Standard(FHS):

https://wiki.linuxfoundation.org/lsb/fhs

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]

重要提示

本项目不会为您自动生成配置文件,只能解决用户安装阶段遇到的问题。其他问题在这里是无法得到帮助的。
请在安装完成后参阅 文档 了解配置文件语法,并自己完成适合自己的配置文件。过程中可参阅社区贡献的 配置文件模板
提请您注意这些模板复制下来以后是需要您自己修改调整的,不能直接使用

依赖软件

安装 cURL

# apt update
# apt install curl

or

# yum makecache
# yum install curl

or

# dnf makecache
# dnf install curl

or

# zypper refresh
# zypper install curl

下载

// 安装可执行文件和 .dat 数据文件
# curl -O https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh
// 只更新 .dat 数据文件
# curl -O https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-dat-release.sh

使用

  • 该脚本在运行时会提供 infoerror 等信息,请仔细阅读。

安装和更新 V2Ray

# bash install-release.sh

安装最新发行的 geoip.dat 和 geosite.dat

# bash install-dat-release.sh

移除 V2Ray

# bash install-release.sh --remove

解决问题

若您的问题没有在上方列出,欢迎在 Issue 区提出。

提问前请先阅读 Issue #63,否则可能无法得到解答并被锁定。

参数

usage: install-release.sh [--remove | --version number | -c | -f | -h | -l | -p]
  [-p address] [--version number | -c | -f]
  --remove        Remove V2Ray
  --version       Install the specified version of V2Ray, e.g., --version v4.18.0
  -c, --check     Check if V2Ray can be updated
  -f, --force     Force installation of the latest version of V2Ray
  -h, --help      Show help
  -l, --local     Install V2Ray from a local file
  -p, --proxy     Download through a proxy server, e.g., -p http://127.0.0.1:8118 or -p socks5://127.0.0.1:1080

维护

请于 develop 分支进行,以避免对主分支造成破坏。

待确定无误后,两分支将进行合并。