클러스터를 운영하면서 특정 호스트의 리눅스 버전을 확인하고 싶은 경우가 있다. 리눅스 운영체제 버전을 확인할 수 있는 방법은 여러가지가 있다.
커널 정보확인
[root@435a98823997 /]# uname -a
Linux 435a98823997 5.4.39-linuxkit #1 SMP Fri May 8 23:03:06 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
리눅스 배포판 정보 확인 1
[root@435a98823997 /]# cat /etc/redhat-release
CentOS Linux release 8.2.2004 (Core)
리눅스 배포판 정보 확인 2
[root@435a98823997 /]# cat /etc/issue
CentOS Linux release 8.2.2004 (Core)
Kernel \r on an \m
리눅스 배포판 정보 확인 3
[root@435a98823997 /]# cat /etc/*release*
CentOS Linux release 8.2.2004 (Core)
Derived from Red Hat Enterprise Linux 8.2 (Source)
NAME="CentOS Linux"
VERSION="8 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="8"
PLATFORM_ID="platform:el8"
PRETTY_NAME="CentOS Linux 8 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:8"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-8"
CENTOS_MANTISBT_PROJECT_VERSION="8"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="8"
CentOS Linux release 8.2.2004 (Core)
CentOS Linux release 8.2.2004 (Core)
cpe:/o:centos:centos:8
리눅스 운영체제 bit 확인
[root@435a98823997 /]# getconf LONG_BIT
64
댓글