check_os.sh 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. #!/bin/bash
  2. # Author: yeho <lj2007331 AT gmail.com>
  3. # BLOG: https://blog.linuxeye.cn
  4. #
  5. # Notes: OneinStack for CentOS/RadHat 6+ Debian 6+ and Ubuntu 12+
  6. #
  7. # Project home page:
  8. # https://oneinstack.com
  9. # https://github.com/lj2007331/oneinstack
  10. if [ -n "$(grep 'Aliyun Linux release' /etc/issue)" -o -e /etc/redhat-release ]; then
  11. OS=CentOS
  12. [ -n "$(grep ' 7\.' /etc/redhat-release 2> /dev/null)" ] && CentOS_RHEL_ver=7
  13. [ -n "$(grep ' 6\.' /etc/redhat-release 2> /dev/null)" -o -n "$(grep 'Aliyun Linux release6 15' /etc/issue)" ] && CentOS_RHEL_ver=6
  14. [ -n "$(grep ' 5\.' /etc/redhat-release 2> /dev/null)" -o -n "$(grep 'Aliyun Linux release5' /etc/issue)" ] && CentOS_RHEL_ver=5
  15. elif [ -n "$(grep 'Amazon Linux AMI release' /etc/issue)" -o -e /etc/system-release ]; then
  16. OS=CentOS
  17. CentOS_RHEL_ver=6
  18. elif [ -n "$(grep 'bian' /etc/issue)" -o "$(lsb_release -is 2>/dev/null)" == "Debian" ]; then
  19. OS=Debian
  20. [ ! -e "$(which lsb_release)" ] && { apt-get -y update; apt-get -y install lsb-release; clear; }
  21. Debian_ver=$(lsb_release -sr | awk -F. '{print $1}')
  22. elif [ -n "$(grep 'Deepin' /etc/issue)" -o "$(lsb_release -is 2>/dev/null)" == "Deepin" ]; then
  23. OS=Debian
  24. [ ! -e "$(which lsb_release)" ] && { apt-get -y update; apt-get -y install lsb-release; clear; }
  25. Debian_ver=$(lsb_release -sr | awk -F. '{print $1}')
  26. # kali rolling
  27. elif [ -n "$(grep 'Kali GNU/Linux Rolling' /etc/issue)" -o "$(lsb_release -is 2>/dev/null)" == "Kali" ]; then
  28. OS=Debian
  29. [ ! -e "$(which lsb_release)" ] && { apt-get -y update; apt-get -y install lsb-release; clear; }
  30. if [ -n "$(grep 'VERSION="2016.*"' /etc/os-release)" ]; then
  31. Debian_ver=8
  32. else
  33. echo "${CFAILURE}Does not support this OS, Please contact the author! ${CEND}"
  34. kill -9 $$
  35. fi
  36. elif [ -n "$(grep 'Ubuntu' /etc/issue)" -o "$(lsb_release -is 2>/dev/null)" == "Ubuntu" -o -n "$(grep 'Linux Mint' /etc/issue)" ]; then
  37. OS=Ubuntu
  38. [ ! -e "$(which lsb_release)" ] && { apt-get -y update; apt-get -y install lsb-release; clear; }
  39. Ubuntu_ver=$(lsb_release -sr | awk -F. '{print $1}')
  40. [ -n "$(grep 'Linux Mint 18' /etc/issue)" ] && Ubuntu_ver=16
  41. elif [ -n "$(grep 'elementary' /etc/issue)" -o "$(lsb_release -is 2>/dev/null)" == 'elementary' ]; then
  42. OS=Ubuntu
  43. [ ! -e "$(which lsb_release)" ] && { apt-get -y update; apt-get -y install lsb-release; clear; }
  44. Ubuntu_ver=16
  45. else
  46. echo "${CFAILURE}Does not support this OS, Please contact the author! ${CEND}"
  47. kill -9 $$
  48. fi
  49. if [ "$(uname -r | awk -F- '{print $3}' 2>/dev/null)" == "Microsoft" ]; then
  50. Wsl=true
  51. fi
  52. if [ "$(getconf WORD_BIT)" == "32" ] && [ "$(getconf LONG_BIT)" == "64" ]; then
  53. OS_BIT=64
  54. SYS_BIG_FLAG=x64 #jdk
  55. SYS_BIT_a=x86_64 #mariadb
  56. SYS_BIT_b=x86_64 #mariadb
  57. SYS_BIT_c=x86_64 #ZendGuardLoader
  58. else
  59. OS_BIT=32
  60. SYS_BIG_FLAG=i586
  61. SYS_BIT_a=x86
  62. SYS_BIT_b=i686
  63. SYS_BIT_c=i386
  64. fi
  65. LIBC_YN=$(awk -v A=$(getconf -a | grep GNU_LIBC_VERSION | awk '{print $NF}') -v B=2.14 'BEGIN{print(A>=B)?"0":"1"}')
  66. [ $LIBC_YN == '0' ] && GLIBC_FLAG=linux-glibc_214 || GLIBC_FLAG=linux
  67. if uname -m | grep -Eqi "arm"; then
  68. armplatform="y"
  69. if uname -m | grep -Eqi "armv7"; then
  70. TARGET_ARCH="armv7"
  71. elif uname -m | grep -Eqi "armv8"; then
  72. TARGET_ARCH="arm64"
  73. else
  74. TARGET_ARCH="unknown"
  75. fi
  76. fi
  77. THREAD=$(grep 'processor' /proc/cpuinfo | sort -u | wc -l)
  78. # Percona
  79. if [[ "${OS}" =~ ^Ubuntu$|^Debian$ ]]; then
  80. if [ "${Debian_ver}" == '6' ]; then
  81. sslLibVer=ssl098
  82. else
  83. sslLibVer=ssl100
  84. fi
  85. elif [ "${OS}" == "CentOS" ]; then
  86. if [ "${CentOS_RHEL_ver}" == '5' ]; then
  87. sslLibVer=ssl098e
  88. else
  89. sslLibVer=ssl101
  90. fi
  91. else
  92. sslLibVer=unknown
  93. fi