1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 15:26:29 -04:00
v2fly/spec/install.md

36 lines
1.4 KiB
Markdown
Raw Normal View History

2015-09-12 16:56:45 -04:00
# V2Ray 安装方式
2015-09-29 03:16:10 -04:00
## 预编译程序
发布于 [Release](https://github.com/v2ray/v2ray-core/releases) 中,每周更新,[更新周期见此](https://github.com/V2Ray/v2ray-core/blob/master/spec/roadmap.md)。
2015-09-12 16:56:45 -04:00
## 编译源文件
2015-09-29 03:16:10 -04:00
大概流程,请根据实际情况修改
2015-09-12 16:56:45 -04:00
1. 安装 Git sudo apt-get install git -y
2. 安装 golang
2015-10-02 04:54:02 -04:00
1. 下载安装文件:
1. 64位curl -o go_latest.tar.gz https://storage.googleapis.com/golang/go1.5.1.linux-amd64.tar.gz
2. 32位curl -o go_latest.tar.gz https://storage.googleapis.com/golang/go1.5.1.linux-386.tar.gz
2015-09-12 16:56:45 -04:00
2. sudo tar -C /usr/local -xzf go_latest.tar.gz
2015-09-15 06:44:38 -04:00
3. export PATH=$PATH:/usr/local/go/bin
4. export GOPATH=$HOME/work
3. go get github.com/v2ray/v2ray-core
4. go build github.com/v2ray/v2ray-core/release/server
2015-09-12 16:56:45 -04:00
2015-09-29 03:16:10 -04:00
### Arch Linux
2015-09-27 08:02:28 -04:00
1. 安装 Git sudo pacman -S git
2. 安装 golangsudo pacman -S go
1. export GOPATH=$HOME/work
3. go get github.com/v2ray/v2ray-core
2015-09-27 08:20:17 -04:00
4. go build -o $GOPATH/bin/v2ray -compiler gc github.com/v2ray/v2ray-core/release/server
2015-09-27 08:02:28 -04:00
2015-09-18 05:43:11 -04:00
### Debian / Ubuntu
sudo bash <(curl -s https://raw.githubusercontent.com/v2ray/v2ray-core/master/release/install.sh)
此脚本会自动安装 git 和 golan 1.5 (如果系统上没有的话),然后把 v2ray 编译到 $GOPATH/bin/v2ray新装的 golang 会把 GOPATH 设定到 /v2ray。
2015-09-27 08:02:28 -04:00
2015-09-15 06:44:38 -04:00
## 配置和运行
[链接](https://github.com/V2Ray/v2ray-core/blob/master/spec/guide.md)