| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 | #!/bin/bash# This file is accessible as https://install.direct/go.sh# Original source is located at github.com/v2ray/v2ray-core/release/install-release.shCUR_VER=""NEW_VER=""ARCH=""VDIS="64"ZIPFILE="/tmp/v2ray/v2ray.zip"V2RAY_RUNNING=0CMD_INSTALL=""CMD_UPDATE=""SOFTWARE_UPDATED=0CHECK=""FORCE=""HELP=""#######color code########RED="31m"GREEN="32m"YELLOW="33m"BLUE="36m"#########################while [[ $# > 0 ]];do    key="$1"    case $key in        -p|--proxy)        PROXY="-x ${2}"        shift # past argument        ;;        -h|--help)        HELP="1"        ;;        -f|--force)        FORCE="1"        ;;        -c|--check)        CHECK="1"        ;;        --remove)        REMOVE="1"        ;;        --version)        VERSION="$2"        shift        ;;        -l|--local)        LOCAL="$2"        LOCAL_INSTALL="1"        shift        ;;        *)                # unknown option        ;;    esac    shift # past argument or valuedone###############################colorEcho(){    COLOR=$1    echo -e "\033[${COLOR}${@:2}\033[0m"}sysArch(){    ARCH=$(uname -m)    if [[ "$ARCH" == "i686" ]] || [[ "$ARCH" == "i386" ]]; then        VDIS="32"    elif [[ "$ARCH" == *"armv7"* ]] || [[ "$ARCH" == "armv6l" ]]; then        VDIS="arm"    elif [[ "$ARCH" == *"armv8"* ]] || [[ "$ARCH" == "aarch64" ]]; then        VDIS="arm64"    elif [[ "$ARCH" == *"mips64le"* ]]; then        VDIS="mips64le"    elif [[ "$ARCH" == *"mips64"* ]]; then        VDIS="mips64"    elif [[ "$ARCH" == *"mipsle"* ]]; then        VDIS="mipsle"    elif [[ "$ARCH" == *"mips"* ]]; then        VDIS="mips"    elif [[ "$ARCH" == *"s390x"* ]]; then        VDIS="s390x"    fi    return 0}downloadV2Ray(){    rm -rf /tmp/v2ray    mkdir -p /tmp/v2ray    colorEcho ${BLUE} "Downloading V2Ray."    DOWNLOAD_LINK="https://github.com/v2ray/v2ray-core/releases/download/${NEW_VER}/v2ray-linux-${VDIS}.zip"    curl ${PROXY} -L -H "Cache-Control: no-cache" -o ${ZIPFILE} ${DOWNLOAD_LINK}    if [ $? != 0 ];then        colorEcho ${RED} "Failed to download! Please check your network or try again."        return 3    fi}installSoftware(){    COMPONENT=$1    if [[ -n `command -v $COMPONENT` ]]; then        return 0    fi    getPMT    if [[ $? -eq 1 ]]; then        colorEcho $YELLOW "The system package manager tool isn't APT or YUM, please install ${COMPONENT} manually."        return 2     fi    colorEcho $GREEN "Installing $COMPONENT"     if [[ $SOFTWARE_UPDATED -eq 0 ]]; then        colorEcho ${BLUE} "Updating software repo"        $CMD_UPDATE              SOFTWARE_UPDATED=1    fi    colorEcho ${BLUE} "Installing ${COMPONENT}"    $CMD_INSTALL $COMPONENT    if [[ $? -ne 0 ]]; then        colorEcho ${RED} "Install ${COMPONENT} fail, please install it manually."        return 2    fi}# return 1: not apt or yumgetPMT(){    if [[ -n `command -v apt-get` ]];then        CMD_INSTALL="apt-get -y -qq install"        CMD_UPDATE="apt-get -qq update"    elif [[ -n `command -v yum` ]]; then        CMD_INSTALL="yum -y -q install"        CMD_UPDATE="yum -q makecache"    else        return 1    fi}extract(){    colorEcho ${BLUE}"Extracting V2Ray package to /tmp/v2ray."    mkdir -p /tmp/v2ray    unzip $1 -d "/tmp/v2ray/"    if [[ $? -ne 0 ]]; then        colorEcho ${RED} "Extracting V2Ray failed!"        return 2    fi}# 1: new V2Ray. 0: nogetVersion(){    if [[ -n "$VERSION" ]]; then        NEW_VER="$VERSION"        return 1    else        CUR_VER=`/usr/bin/v2ray/v2ray -version 2>/dev/null | head -n 1 | cut -d " " -f2`        TAG_URL="https://api.github.com/repos/v2ray/v2ray-core/releases/latest"        NEW_VER=`curl ${PROXY} -s ${TAG_URL} --connect-timeout 10| grep 'tag_name' | cut -d\" -f4`        if [[ $? -ne 0 ]] || [[ $NEW_VER == "" ]]; then            colorEcho ${RED} "Network error! Please check your network or try again."            exit        elif [[ "$NEW_VER" != "$CUR_VER" ]];then                return 1        fi        return 0    fi}stopV2ray(){    SYSTEMCTL_CMD=$(command -v systemctl)    SERVICE_CMD=$(command -v service)    colorEcho ${BLUE} "Shutting down V2Ray service."    if [[ -n "${SYSTEMCTL_CMD}" ]] || [[ -f "/lib/systemd/system/v2ray.service" ]] || [[ -f "/etc/systemd/system/v2ray.service" ]]; then        ${SYSTEMCTL_CMD} stop v2ray    elif [[ -n "${SERVICE_CMD}" ]] || [[ -f "/etc/init.d/v2ray" ]]; then        ${SERVICE_CMD} v2ray stop    fi    return 0}startV2ray(){    SYSTEMCTL_CMD=$(command -v systemctl)    SERVICE_CMD=$(command -v service)    if [ -n "${SYSTEMCTL_CMD}" ] && [ -f "/lib/systemd/system/v2ray.service" ]; then        ${SYSTEMCTL_CMD} start v2ray    elif [ -n "${SYSTEMCTL_CMD}" ] && [ -f "/etc/systemd/system/v2ray.service" ]; then        ${SYSTEMCTL_CMD} start v2ray    elif [ -n "${SERVICE_CMD}" ] && [ -f "/etc/init.d/v2ray" ]; then        ${SERVICE_CMD} v2ray start    fi    return 0}copyFile() {    NAME=$1    MANDATE=$2    ERROR=`cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/${NAME}" "/usr/bin/v2ray/${NAME}" 2>&1`    if [[ $? -ne 0 ]]; then        colorEcho ${YELLOW} "${ERROR}"        if [ "$MANDATE" = true ]; then            exit        fi    fi}makeExecutable() {    chmod +x "/usr/bin/v2ray/$1"}installV2Ray(){    # Install V2Ray binary to /usr/bin/v2ray    mkdir -p /usr/bin/v2ray    copyFile v2ray true    makeExecutable v2ray    copyFile v2ctl false    makeExecutable v2ctl    copyFile geoip.dat false    copyFile geosite.dat false    # Install V2Ray server config to /etc/v2ray    mkdir -p /etc/v2ray    if [[ ! -f "/etc/v2ray/config.json" ]]; then      cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/vpoint_vmess_freedom.json" "/etc/v2ray/config.json"      if [[ $? -ne 0 ]]; then          colorEcho ${YELLOW} "Create V2Ray configuration file error, pleases create it manually."          return 1      fi      let PORT=$RANDOM+10000      UUID=$(cat /proc/sys/kernel/random/uuid)      sed -i "s/10086/${PORT}/g" "/etc/v2ray/config.json"      sed -i "s/23ad6b10-8d1a-40f7-8ad0-e3e35cd38297/${UUID}/g" "/etc/v2ray/config.json"      colorEcho ${GREEN} "PORT:${PORT}"      colorEcho ${GREEN} "UUID:${UUID}"      mkdir -p /var/log/v2ray    fi}installInitScript(){    SYSTEMCTL_CMD=$(command -v systemctl)    SERVICE_CMD=$(command -v service)    if [[ -n "${SYSTEMCTL_CMD}" ]];then        if [[ ! -f "/etc/systemd/system/v2ray.service" ]]; then            if [[ ! -f "/lib/systemd/system/v2ray.service" ]]; then                cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/systemd/v2ray.service" "/etc/systemd/system/"                systemctl enable v2ray.service            fi        fi        return    elif [[ -n "${SERVICE_CMD}" ]] && [[ ! -f "/etc/init.d/v2ray" ]]; then        installSoftware "daemon" || return $?        cp "/tmp/v2ray/v2ray-${NEW_VER}-linux-${VDIS}/systemv/v2ray" "/etc/init.d/v2ray"        chmod +x "/etc/init.d/v2ray"        update-rc.d v2ray defaults    fi    return}Help(){    echo "./install-release.sh [-h] [-c] [-p proxy] [-f] [--version vx.y.z] [-l file]"    echo "  -h, --help            Show help"    echo "  -p, --proxy           To download through a proxy server, use -p socks5://127.0.0.1:1080 or -p http://127.0.0.1:3128 etc"    echo "  -f, --force           Force install"    echo "      --version         Install a particular version"    echo "  -l, --local           Install from a local file"    echo "      --remove          Remove installed V2Ray"    echo "  -c, --check           Check for update"}remove(){    SYSTEMCTL_CMD=$(command -v systemctl)    SERVICE_CMD=$(command -v service)    if [[ -n "${SYSTEMCTL_CMD}" ]] && [[ -f "/etc/systemd/system/v2ray.service" ]];then        if pgrep "v2ray" > /dev/null ; then            stopV2ray        fi        systemctl disable v2ray.service        rm -rf "/usr/bin/v2ray" "/etc/systemd/system/v2ray.service"        if [[ $? -ne 0 ]]; then            colorEcho ${RED} "Failed to remove V2Ray."            return        else            colorEcho ${GREEN} "Removed V2Ray successfully."            colorEcho ${GREEN} "If necessary, please remove configuration file and log file manually."            return 0        fi    elif [[ -n "${SYSTEMCTL_CMD}" ]] && [[ -f "/lib/systemd/system/v2ray.service" ]];then        if pgrep "v2ray" > /dev/null ; then            stopV2ray        fi        systemctl disable v2ray.service        rm -rf "/usr/bin/v2ray" "/lib/systemd/system/v2ray.service"        if [[ $? -ne 0 ]]; then            colorEcho ${RED} "Failed to remove V2Ray."            return        else            colorEcho ${GREEN} "Removed V2Ray successfully."            colorEcho ${GREEN} "If necessary, please remove configuration file and log file manually."            return 0        fi    elif [[ -n "${SERVICE_CMD}" ]] && [[ -f "/etc/init.d/v2ray" ]]; then        if pgrep "v2ray" > /dev/null ; then            stopV2ray        fi        rm -rf "/usr/bin/v2ray" "/etc/init.d/v2ray"        if [[ $? -ne 0 ]]; then            colorEcho ${RED} "Failed to remove V2Ray."            return        else            colorEcho ${GREEN} "Removed V2Ray successfully."            colorEcho ${GREEN} "If necessary, please remove configuration file and log file manually."            return 0        fi           else        colorEcho ${GREEN} "V2Ray not found."        return 0    fi}checkUpdate(){        echo "Checking for update."        getVersion        if [[ $? -eq 1 ]]; then            colorEcho ${GREEN} "Found new version ${NEW_VER} for V2Ray."            exit         else             colorEcho ${GREEN} "No new version."            exit        fi}main(){    #helping information    [[ "$CHECK" == "1" ]] && checkUpdate    [[ "$HELP" == "1" ]] && Help && return    [[ "$REMOVE" == "1" ]] && remove && return        sysArch    # extract local file    if [[ $LOCAL_INSTALL -eq 1 ]]; then        echo "Install V2Ray via local file"        installSoftware unzip || return $?        rm -rf /tmp/v2ray        extract $LOCAL || return $?        FILEVDIS=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f4`        SYSTEM=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f3`        if [[ ${SYSTEM} != "linux" ]]; then            colorEcho $RED "The local V2Ray can not be installed in linux."            return 1        elif [[ ${FILEVDIS} != ${VDIS} ]]; then            colorEcho $RED "The local V2Ray can not be installed in ${ARCH} system."            return 1        else            NEW_VER=`ls /tmp/v2ray |grep v2ray-v |cut -d "-" -f2`        fi    else        # download via network and extract        installSoftware "curl" || return $?        getVersion        if [[ $? == 0 ]] && [[ "$FORCE" != "1" ]]; then            colorEcho ${GREEN} "Latest version ${NEW_VER} is already installed."            exit        else            colorEcho ${BLUE} "Installing V2Ray ${NEW_VER} on ${ARCH}"            downloadV2Ray            installSoftware unzip            extract ${ZIPFILE}        fi    fi     if pgrep "v2ray" > /dev/null ; then        V2RAY_RUNNING=1        stopV2ray    fi    installV2Ray || return $?    installInitScript || return $?    if [[ ${V2RAY_RUNNING} -eq 1 ]];then        colorEcho ${BLUE} "Restarting V2Ray service."        startV2ray || return $?    fi    colorEcho ${GREEN} "V2Ray ${NEW_VER} is installed."    rm -rf /tmp/v2ray    return 0}main
 |