1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #!/bin/bash
- # Author: yeho <lj2007331 AT gmail.com>
- # BLOG: https://blog.linuxeye.com
- #
- # Notes: OneinStack for CentOS/RadHat 5+ Debian 6+ and Ubuntu 12+
- #
- # Project home page:
- # https://oneinstack.com
- # https://github.com/lj2007331/oneinstack
- if [ -n "$(grep 'Aliyun Linux release' /etc/issue)" -o -e /etc/redhat-release ]; then
- OS=CentOS
- [ -n "$(grep ' 7\.' /etc/redhat-release 2> /dev/null)" ] && CentOS_RHEL_version=7
- [ -n "$(grep ' 6\.' /etc/redhat-release 2> /dev/null)" -o -n "$(grep 'Aliyun Linux release6 15' /etc/issue)" ] && CentOS_RHEL_version=6
- [ -n "$(grep ' 5\.' /etc/redhat-release 2> /dev/null)" -o -n "$(grep 'Aliyun Linux release5' /etc/issue)" ] && CentOS_RHEL_version=5
- elif [ -n "$(grep 'Amazon Linux AMI release' /etc/issue)" -o -e /etc/system-release ]; then
- OS=CentOS
- CentOS_RHEL_version=6
- elif [ -n "$(grep 'bian' /etc/issue)" -o "$(lsb_release -is 2>/dev/null)" == "Debian" ]; then
- OS=Debian
- [ ! -e "$(which lsb_release)" ] && { apt-get -y update; apt-get -y install lsb-release; clear; }
- Debian_version=$(lsb_release -sr | awk -F. '{print $1}')
- elif [ -n "$(grep 'Deepin' /etc/issue)" -o "$(lsb_release -is 2>/dev/null)" == "Deepin" ]; then
- OS=Debian
- [ ! -e "$(which lsb_release)" ] && { apt-get -y update; apt-get -y install lsb-release; clear; }
- Debian_version=$(lsb_release -sr | awk -F. '{print $1}')
- # kali rolling
- elif [ -n "$(grep 'Kali GNU/Linux Rolling' /etc/issue)" -o "$(lsb_release -is 2>/dev/null)" == "Kali" ]; then
- OS=Debian
- [ ! -e "$(which lsb_release)" ] && { apt-get -y update; apt-get -y install lsb-release; clear; }
- if [ -n "$(grep 'VERSION="2016.*"' /etc/os-release)" ]; then
- Debian_version=8
- else
- echo "${CFAILURE}Does not support this OS, Please contact the author! ${CEND}"
- kill -9 $$
- fi
- elif [ -n "$(grep 'Ubuntu' /etc/issue)" -o "$(lsb_release -is 2>/dev/null)" == "Ubuntu" -o -n "$(grep 'Linux Mint' /etc/issue)" ]; then
- OS=Ubuntu
- [ ! -e "$(which lsb_release)" ] && { apt-get -y update; apt-get -y install lsb-release; clear; }
- Ubuntu_version=$(lsb_release -sr | awk -F. '{print $1}')
- [ -n "$(grep 'Linux Mint 18' /etc/issue)" ] && Ubuntu_version=16
- elif [ -n "$(grep 'elementary' /etc/issue)" -o "$(lsb_release -is 2>/dev/null)" == 'elementary' ]; then
- OS=Ubuntu
- [ ! -e "$(which lsb_release)" ] && { apt-get -y update; apt-get -y install lsb-release; clear; }
- Ubuntu_version=16
- else
- echo "${CFAILURE}Does not support this OS, Please contact the author! ${CEND}"
- kill -9 $$
- fi
- if [ "$(getconf WORD_BIT)" == "32" ] && [ "$(getconf LONG_BIT)" == "64" ]; then
- OS_BIT=64
- SYS_BIG_FLAG=x64 #jdk
- SYS_BIT_a=x86_64;SYS_BIT_b=x86_64; #mariadb
- else
- OS_BIT=32
- SYS_BIG_FLAG=i586
- SYS_BIT_a=x86;SYS_BIT_b=i686;
- fi
- LIBC_YN=$(awk -v A=$(getconf -a | grep GNU_LIBC_VERSION | awk '{print $NF}') -v B=2.14 'BEGIN{print(A>=B)?"0":"1"}')
- [ $LIBC_YN == '0' ] && GLIBC_FLAG=linux-glibc_214 || GLIBC_FLAG=linux
- if uname -m | grep -Eqi "arm"; then
- armPlatform="y"
- if uname -m | grep -Eqi "armv7"; then
- TARGET_ARCH="armv7"
- elif uname -m | grep -Eqi "armv8"; then
- TARGET_ARCH="arm64"
- else
- TARGET_ARCH="unknown"
- fi
- fi
- THREAD=$(grep 'processor' /proc/cpuinfo | sort -u | wc -l)
- # Percona
- if [[ "${OS}" =~ ^Ubuntu$|^Debian$ ]]; then
- if [ "${Debian_version}" == '6' ]; then
- sslLibVer=ssl098
- else
- sslLibVer=ssl100
- fi
- elif [ "${OS}" == "CentOS" ]; then
- if [ "${CentOS_RHEL_version}" == '5' ]; then
- sslLibVer=ssl098e
- else
- sslLibVer=ssl101
- fi
- else
- sslLibVer=unknown
- fi
|