2015-12-03 04:58:31 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-12-08 06:41:20 -05:00
|
|
|
echo "Please make sure unzip and daemon are installed before running this script."
|
|
|
|
|
2016-01-10 16:38:02 -05:00
|
|
|
VER="v1.3"
|
2015-12-03 04:58:31 -05:00
|
|
|
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
VDIS="64"
|
|
|
|
|
2016-01-09 15:50:27 -05:00
|
|
|
if [[ "$ARCH" == "i686" ]] || [[ "$ARCH" == "i386" ]]; then
|
2015-12-03 04:58:31 -05:00
|
|
|
VDIS="32"
|
2016-01-09 15:50:27 -05:00
|
|
|
elif [[ "$ARCH" == *"armv7"* ]]; then
|
2015-12-08 06:41:20 -05:00
|
|
|
VDIS="arm"
|
2016-01-09 15:50:27 -05:00
|
|
|
elif [[ "$ARCH" == *"armv8"* ]]; then
|
2015-12-08 06:41:20 -05:00
|
|
|
VDIS="arm64"
|
2015-12-03 04:58:31 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
DOWNLOAD_LINK="https://github.com/v2ray/v2ray-core/releases/download/${VER}/v2ray-linux-${VDIS}.zip"
|
|
|
|
|
|
|
|
rm -rf /tmp/v2ray
|
2015-12-04 16:53:56 -05:00
|
|
|
mkdir -p /tmp/v2ray
|
2015-12-03 04:58:31 -05:00
|
|
|
|
2015-12-04 16:53:56 -05:00
|
|
|
curl -L -o "/tmp/v2ray/v2ray.zip" ${DOWNLOAD_LINK}
|
2015-12-03 04:58:31 -05:00
|
|
|
unzip "/tmp/v2ray/v2ray.zip" -d "/tmp/v2ray/"
|
|
|
|
|
2015-12-08 06:41:20 -05:00
|
|
|
# Create folder for V2Ray log.
|
2015-12-07 19:01:36 -05:00
|
|
|
mkdir -p /var/log/v2ray
|
2015-12-03 04:58:31 -05:00
|
|
|
|
2015-12-08 06:41:20 -05:00
|
|
|
# Install V2Ray binary to /usr/bin/v2ray
|
|
|
|
mkdir -p /usr/bin/v2ray
|
2015-12-04 16:53:56 -05:00
|
|
|
cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/v2ray" "/usr/bin/v2ray/v2ray"
|
2015-12-10 06:40:16 -05:00
|
|
|
chmod +x "/usr/bin/v2ray/v2ray"
|
2015-12-05 23:25:21 -05:00
|
|
|
|
2015-12-08 06:41:20 -05:00
|
|
|
# Install V2Ray server config to /etc/v2ray
|
|
|
|
mkdir -p /etc/v2ray
|
2015-12-07 19:01:36 -05: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 06:41:20 -05:00
|
|
|
|
2015-12-08 08:23:47 -05:00
|
|
|
let PORT=$RANDOM+10000
|
|
|
|
sed -i "s/37192/${PORT}/g" "/etc/v2ray/config.json"
|
2015-12-05 23:25:21 -05:00
|
|
|
|
2015-12-07 19:01:36 -05:00
|
|
|
UUID=$(cat /proc/sys/kernel/random/uuid)
|
|
|
|
sed -i "s/3b129dec-72a3-4d28-aeee-028a0fe86e22/${UUID}/g" "/etc/v2ray/config.json"
|
2015-12-05 23:25:21 -05:00
|
|
|
|
2015-12-08 08:23:47 -05:00
|
|
|
echo "PORT:${PORT}"
|
2015-12-07 19:01:36 -05:00
|
|
|
echo "UUID:${UUID}"
|
|
|
|
fi
|
2015-12-08 06:41:20 -05:00
|
|
|
|
|
|
|
# Configure SysV if necessary.
|
|
|
|
if [ -d "/etc/init.d" ]; then
|
|
|
|
if [ ! -f "/etc/init.d/v2ray" ]; then
|
2015-12-10 09:45:51 -05:00
|
|
|
cp "/tmp/v2ray/v2ray-${VER}-linux-${VDIS}/systemv/v2ray" "/etc/init.d/v2ray"
|
2015-12-08 06:41:20 -05:00
|
|
|
chmod +x "/etc/init.d/v2ray"
|
|
|
|
update-rc.d v2ray defaults
|
|
|
|
fi
|
|
|
|
fi
|