[Linux] CentOS, Ubuntu 등 OS 버전을 확인하는 명령어
2020. 2. 8. 22:41
728x90
반응형
다른 개발실 분들이 구축해놓은 Linux의 경우, 인수인계가 제대로 이루어 지지 않거나,
문서화된 자료가 부족한 경우 가 간혹 발생합니다.
이럴 경우, 기본적으로 어떤 종류의 Linux를 사용했는지 항상 체크를 해보는데요.
자주 사용하는 방식을 정리하였습니다.
Linux 배포판 버전확인
CentOS
[root@localhost /]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)
Ubuntu
[root@localhost /]# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04 LTS"
공통적으로 사용
[root@localhost /]# cat /etc/*release*
CentOS Linux release 7.6.1810 (Core)
Derived from Red Hat Enterprise Linux 7.6 (Source)
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"
CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"
CentOS Linux release 7.6.1810 (Core)
CentOS Linux release 7.6.1810 (Core)
cpe:/o:centos:centos:7
Linux 커널(Kernel) 버전 확인
[root@localhost /]# cat /proc/version
Linux version 3.10.0-957.21.3.el7.x86_64 (mockbuild@kbuilder.bsys.centos.org) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC) ) #1 SMP Tue Jun 18 16:35:19 UTC 2019
(uname, 상세 정보는 '-a' 옵션사용)
[root@localhost /]# uname -a
Linux localhost.localdomain 3.10.0-957.21.3.el7.x86_64 #1 SMP Tue Jun 18 16:35:19 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
[root@localhost /]# uname -r
3.10.0-957.21.3.el7.x86_64
Linux bit 확인
[root@localhost /]# getconf LONG_BIT
64
728x90
'OS > Linux' 카테고리의 다른 글
[CentOS 7] CentOS 7 - NGINX 설치 방법 (4) | 2020.03.02 |
---|---|
[CentOS 7] 방화벽 해제하기 - firewall-cmd (0) | 2020.02.25 |
[CentOS 7] Network 관련 셋팅 명령어 정리 (0) | 2019.12.10 |
[CentOS 7] 리눅스 디렉토리 구조 (1) | 2019.12.10 |
[CentOS 7] CentOS 7 부팅시 콘솔모드로 전환 (0) | 2019.12.04 |