check_os.sh 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #!/bin/bash
  2. # Author: yeho <lj2007331 AT gmail.com>
  3. # BLOG: https://blog.linuxeye.com
  4. #
  5. # Notes: OneinStack for CentOS/RadHat 5+ Debian 6+ and Ubuntu 12+
  6. #
  7. # Project home page:
  8. # http://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`" ] && CentOS_RHEL_version=7
  13. [ -n "`grep ' 6\.' /etc/redhat-release`" -o -n "`grep 'Aliyun Linux release6 15' /etc/issue`" ] && CentOS_RHEL_version=6
  14. [ -n "`grep ' 5\.' /etc/redhat-release`" -o -n "`grep 'Aliyun Linux release5' /etc/issue`" ] && CentOS_RHEL_version=5
  15. elif [ -n "`grep bian /etc/issue`" -o "`lsb_release -is 2>/dev/null`" == 'Debian' ];then
  16. OS=Debian
  17. [ ! -e "`which lsb_release`" ] && { apt-get -y update; apt-get -y install lsb-release; }
  18. Debian_version=`lsb_release -sr | awk -F. '{print $1}'`
  19. elif [ -n "`grep Deepin /etc/issue`" -o "`lsb_release -is 2>/dev/null`" == 'Deepin' ];then
  20. OS=Debian
  21. [ ! -e "`which lsb_release`" ] && { apt-get -y update; apt-get -y install lsb-release; }
  22. Debian_version=`lsb_release -sr | awk -F. '{print $1}'`
  23. elif [ -n "`grep Ubuntu /etc/issue`" -o "`lsb_release -is 2>/dev/null`" == 'Ubuntu' ];then
  24. OS=Ubuntu
  25. [ ! -e "`which lsb_release`" ] && { apt-get -y update; apt-get -y install lsb-release; }
  26. Ubuntu_version=`lsb_release -sr | awk -F. '{print $1}'`
  27. else
  28. echo "${CFAILURE}Does not support this OS, Please contact the author! ${CEND}"
  29. kill -9 $$
  30. fi
  31. if [ `getconf WORD_BIT` == 32 ] && [ `getconf LONG_BIT` == 64 ];then
  32. OS_BIT=64
  33. SYS_BIG_FLAG=x64 #jdk
  34. SYS_BIT_a=x86_64;SYS_BIT_b=x86_64; #mariadb
  35. else
  36. OS_BIT=32
  37. SYS_BIG_FLAG=i586
  38. SYS_BIT_a=x86;SYS_BIT_b=i686;
  39. fi
  40. THREAD=$(grep 'processor' /proc/cpuinfo | sort -u | wc -l)