| 
									
										
										
										
											2015-12-03 10:58:31 +01:00
										 |  |  | #!/bin/bash
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-13 00:52:26 +01:00
										 |  |  | YUM_CMD=$(command -v yum) | 
					
						
							|  |  |  | APT_CMD=$(command -v apt-get) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ -n "${YUM_CMD}" ]; then | 
					
						
							|  |  |  |   echo "Installing unzip and daemon via yum." | 
					
						
							| 
									
										
										
										
											2016-01-13 01:05:37 +01:00
										 |  |  |   ${YUM_CMD} -q makecache | 
					
						
							| 
									
										
										
										
											2016-01-13 00:52:26 +01:00
										 |  |  |   ${YUM_CMD} -y -q install unzip daemon | 
					
						
							|  |  |  | elif [ -n "${APT_CMD}" ]; then | 
					
						
							|  |  |  |   echo "Installing unzip and daemon via apt-get." | 
					
						
							| 
									
										
										
										
											2016-01-13 01:05:37 +01:00
										 |  |  |   ${APT_CMD} -qq update | 
					
						
							| 
									
										
										
										
											2016-01-13 00:52:26 +01:00
										 |  |  |   ${APT_CMD} -y -qq install unzip daemon | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |   echo "Please make sure unzip and daemon are installed." | 
					
						
							|  |  |  | fi | 
					
						
							| 
									
										
										
										
											2015-12-08 11:41:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-01 14:06:03 +00:00
										 |  |  | VER="v1.6" | 
					
						
							| 
									
										
										
										
											2015-12-03 10:58:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | ARCH=$(uname -m) | 
					
						
							|  |  |  | VDIS="64" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-09 21:50:27 +01:00
										 |  |  | if [[ "$ARCH" == "i686" ]] || [[ "$ARCH" == "i386" ]]; then | 
					
						
							| 
									
										
										
										
											2015-12-03 10:58:31 +01:00
										 |  |  |   VDIS="32" | 
					
						
							| 
									
										
										
										
											2016-01-09 21:50:27 +01:00
										 |  |  | elif [[ "$ARCH" == *"armv7"* ]]; then | 
					
						
							| 
									
										
										
										
											2015-12-08 11:41:20 +00:00
										 |  |  |   VDIS="arm" | 
					
						
							| 
									
										
										
										
											2016-01-09 21:50:27 +01:00
										 |  |  | elif [[ "$ARCH" == *"armv8"* ]]; then | 
					
						
							| 
									
										
										
										
											2015-12-08 11:41:20 +00:00
										 |  |  |   VDIS="arm64" | 
					
						
							| 
									
										
										
										
											2015-12-03 10:58:31 +01:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | DOWNLOAD_LINK="https://github.com/v2ray/v2ray-core/releases/download/${VER}/v2ray-linux-${VDIS}.zip" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | rm -rf /tmp/v2ray | 
					
						
							| 
									
										
										
										
											2015-12-04 22:53:56 +01:00
										 |  |  | mkdir -p /tmp/v2ray | 
					
						
							| 
									
										
										
										
											2015-12-03 10:58:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-04 22:53:56 +01:00
										 |  |  | curl -L -o "/tmp/v2ray/v2ray.zip" ${DOWNLOAD_LINK} | 
					
						
							| 
									
										
										
										
											2015-12-03 10:58:31 +01:00
										 |  |  | unzip "/tmp/v2ray/v2ray.zip" -d "/tmp/v2ray/" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-08 11:41:20 +00:00
										 |  |  | # Create folder for V2Ray log. | 
					
						
							| 
									
										
										
										
											2015-12-08 01:01:36 +01:00
										 |  |  | mkdir -p /var/log/v2ray | 
					
						
							| 
									
										
										
										
											2015-12-03 10:58:31 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-08 11:41:20 +00:00
										 |  |  | # Install V2Ray binary to /usr/bin/v2ray | 
					
						
							|  |  |  | mkdir -p /usr/bin/v2ray | 
					
						
							| 
									
										
										
										
											2015-12-04 22:53:56 +01:00
										 |  |  | cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/v2ray" "/usr/bin/v2ray/v2ray" | 
					
						
							| 
									
										
										
										
											2015-12-10 12:40:16 +01:00
										 |  |  | chmod +x "/usr/bin/v2ray/v2ray" | 
					
						
							| 
									
										
										
										
											2015-12-06 12:25:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-08 11:41:20 +00:00
										 |  |  | # Install V2Ray server config to /etc/v2ray | 
					
						
							|  |  |  | mkdir -p /etc/v2ray | 
					
						
							| 
									
										
										
										
											2015-12-08 01:01:36 +01:00
										 |  |  | if [ ! -f "/etc/v2ray/config.json" ]; then | 
					
						
							|  |  |  |   cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json" | 
					
						
							| 
									
										
										
										
											2015-12-08 11:41:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-08 21:23:47 +08:00
										 |  |  |   let PORT=$RANDOM+10000 | 
					
						
							|  |  |  |   sed -i "s/37192/${PORT}/g" "/etc/v2ray/config.json" | 
					
						
							| 
									
										
										
										
											2015-12-06 12:25:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-08 01:01:36 +01:00
										 |  |  |   UUID=$(cat /proc/sys/kernel/random/uuid) | 
					
						
							|  |  |  |   sed -i "s/3b129dec-72a3-4d28-aeee-028a0fe86e22/${UUID}/g" "/etc/v2ray/config.json" | 
					
						
							| 
									
										
										
										
											2015-12-06 12:25:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-08 21:23:47 +08:00
										 |  |  |   echo "PORT:${PORT}" | 
					
						
							| 
									
										
										
										
											2015-12-08 01:01:36 +01:00
										 |  |  |   echo "UUID:${UUID}" | 
					
						
							|  |  |  | fi | 
					
						
							| 
									
										
										
										
											2015-12-08 11:41:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-18 00:19:37 +01:00
										 |  |  | SYSTEMCTL_CMD=$(command -v systemctl) | 
					
						
							|  |  |  | SERVICE_CMD=$(command -v service) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ -n "${SYSTEMCTL_CMD}" ]; then | 
					
						
							| 
									
										
										
										
											2016-01-17 22:45:56 +01:00
										 |  |  |   if [ ! -f "/lib/systemd/system/v2ray.service" ]; then | 
					
						
							|  |  |  |     cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/systemd/v2ray.service" "/lib/systemd/system/" | 
					
						
							|  |  |  |     systemctl enable v2ray | 
					
						
							|  |  |  |   fi | 
					
						
							| 
									
										
										
										
											2016-01-18 00:19:37 +01:00
										 |  |  | elif [ -n "${SERVICE_CMD}" ]; then # Configure SysV if necessary. | 
					
						
							| 
									
										
										
										
											2015-12-08 11:41:20 +00:00
										 |  |  |   if [ ! -f "/etc/init.d/v2ray" ]; then | 
					
						
							| 
									
										
										
										
											2015-12-10 15:45:51 +01:00
										 |  |  |     cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/systemv/v2ray" "/etc/init.d/v2ray" | 
					
						
							| 
									
										
										
										
											2015-12-08 11:41:20 +00:00
										 |  |  |     chmod +x "/etc/init.d/v2ray" | 
					
						
							|  |  |  |     update-rc.d v2ray defaults | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | fi |